forked from platformatic/platformatic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.37 KB
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
{
"name": "platformatic",
"type": "module",
"version": "3.55.0",
"private": true,
"scripts": {
"test": "pnpm -r --workspace-concurrency=1 --if-present test",
"test:cleanup": "rm -vrf tmp packages/**/tmp",
"test:types": "pnpm -r --workspace-concurrency=1 --if-present test:types",
"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",
"lint:updated-only": "node ./scripts/lint-updated-packages.js",
"gen-schemas-types": "node ./scripts/gen-schemas-types.js",
"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": "node ./scripts/generate-errors-doc.js",
"global-links": "cd packages/cli && pnpm link --global && cd ../wattpm && pnpm link --global && cd ../create-wattpm && pnpm link --global"
},
"packageManager": "pnpm@10.33.2",
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"markdownlint-cli2": "^0.18.0"
},
"pre-commit": "lint:updated-only, gen-schemas-types"
}