forked from platformatic/platformatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 887 Bytes
/
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
{
"name": "platformatic",
"version": "1.15.1",
"private": true,
"scripts": {
"test": "pnpm -r --workspace-concurrency=1 test",
"cleanall": "rm pnpm-lock.yaml && rm -rf node_modules && rm -rf packages/*/node_modules",
"clean": "rm -rf node_modules && rm -rf packages/*/node_modules",
"postinstall": "node ./scripts/postinstall.js",
"lint:markdown": "markdownlint-cli2",
"test:config": "cd packages/config && pnpm test",
"test:metaconfig": "cd packages/config && pnpm test",
"lint": "pnpm -r --workspace-concurrency=1 lint",
"generate-errors-doc": "cd packages/generate-errors-doc && pnpm run generate-doc"
},
"packageManager": "[email protected]",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"desm": "^1.3.0",
"markdownlint-cli2": "^0.11.0"
},
"pre-commit": [
"lint",
"test:config",
"test:metaconfig"
]
}