forked from platformatic/platformatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 996 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
{
"name": "platformatic",
"version": "2.35.1",
"private": true,
"scripts": {
"test": "pnpm -r --workspace-concurrency=1 --if-present test",
"gen-schema": "pnpm -r --workspace-concurrency=1 run --if-present gen-schema",
"gen-types": "pnpm -r --workspace-concurrency=1 run --if-present gen-types",
"build": "pnpm -r --workspace-concurrency=1 run --if-present build",
"lint": "pnpm -r --workspace-concurrency=1 --if-present lint",
"lint:markdown": "markdownlint-cli2",
"postinstall": "node ./scripts/postinstall.js",
"cleanall": "rm pnpm-lock.yaml && rm -rf node_modules && rm -rf packages/*/node_modules",
"clean": "rm -rf node_modules && rm -rf packages/*/node_modules",
"generate-errors-doc": "cd packages/generate-errors-doc && pnpm run generate-doc"
},
"packageManager": "[email protected]",
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"desm": "^1.3.1",
"markdownlint-cli2": "^0.17.0"
},
"pre-commit": [
"lint"
]
}