-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@awskrug/platform-engineering-glossary",
"private": true,
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20",
"pnpm": ">=8.14.1"
},
"packageManager": "pnpm@8.14.1",
"scripts": {
"ts": "node --no-warnings --loader ts-node/esm",
"lint": "pnpm eslint --fix",
"lint:csv": "pnpm --silent ts workflows/csvlint.ts",
"lint:md": "cross-env NODE_NO_WARNINGS=1 markdownlint",
"lint:config": "ajv validate -s articles/config.schema.json -d articles/config.yaml",
"lint:frontmatter": "pnpm --silent ts workflows/frontmatterlint.ts",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
"render": "pnpm --silent ts workflows/render.ts",
"dev": "cross-env NODE_NO_WARNINGS=1 NODE_OPTIONS='--loader=ts-node/esm' nodemon --ext md,csv --ignore '*.rendered.*' workflows/render.ts",
"haetae": "cross-env NODE_NO_WARNINGS=1 NODE_OPTIONS='--loader=ts-node/esm' haetae",
"ht": "cross-env NODE_NO_WARNINGS=1 NODE_OPTIONS='--loader=ts-node/esm' haetae",
"prepare": "husky install"
},
"lint-staged": {
"*.?({c,m}){j,t}s?(x)": [
"eslint --fix"
],
"*.md": [
"eslint --fix",
"pnpm lint:md --fix"
],
"glossary.csv": [
"pnpm lint:csv"
],
"articles/config.yaml": [
"pnpm ts workflows/configlint.ts"
]
},
"prettier": "@jjangga0214/prettier-config",
"devDependencies": {
"@actions/github": "^6.0.0",
"@haetae/common": "^0.0.5",
"@jjangga0214/eslint-config": "^5.1.0",
"@jjangga0214/jest-config": "^5.2.0",
"@jjangga0214/markdownlint-config": "^1.1.0",
"@jjangga0214/prettier-config": "^3.1.0",
"@jjangga0214/tsconfig": "^4.0.0",
"@octokit/action": "^6.0.7",
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.11",
"@types/mustache": "^4.2.5",
"@types/node": "20",
"ajv-cli": "^5.0.0",
"axios": "^1.6.5",
"chalk": "^5.3.0",
"chalk-template": "^1.1.0",
"cross-env": "^7.0.3",
"dirname-filename-esm": "^1.1.1",
"eslint": "^8.56.0",
"execa": "^8.0.1",
"globby": "^14.0.0",
"haetae": "0.0.23",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^15.2.0",
"markdownlint-cli": "^0.38.0",
"mustache": "^4.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"types-json": "^4.0.1",
"typescript": "^5.3.3",
"upath": "^2.0.1",
"yaml": "^2.3.4"
}
}