forked from platformatic/platformatic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.01 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
{
"name": "platformatic",
"version": "0.21.1",
"private": true,
"scripts": {
"test": "pnpm -r --workspace-concurrency=1 test",
"dashboard:start": "cd packages/db-dashboard && pnpm run dev",
"dashboard:build": "cd packages/db-dashboard && node scripts/fix-dashboard-env.js && pnpm run build",
"ra-data-rest": "pnpm -F @platformatic/db-ra-data-rest",
"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"
},
"packageManager": "[email protected]",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"desm": "^1.3.0",
"markdownlint-cli2": "^0.7.1"
},
"pre-commit": [
"lint",
"test:config",
"test:metaconfig"
]
}