-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.03 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.03 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
30
{
"name": "cwork",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.30.3",
"scripts": {
"dev": "pnpm -r --parallel dev",
"start:core": "pnpm --filter @cwork/core start",
"preview:web": "pnpm --filter @cwork/web preview",
"build": "pnpm -r build",
"test": "pnpm -r test",
"e2e": "pnpm -r e2e",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"perf:smoke": "pnpm --filter @cwork/core perf:smoke",
"reliability:smoke": "pnpm --filter @cwork/core reliability:smoke",
"security:check": "pnpm audit --audit-level high && pnpm --filter @cwork/core test:security",
"release:check": "pnpm -r lint && pnpm -r typecheck && pnpm -r test && pnpm -r build && pnpm -r e2e && pnpm audit --audit-level high",
"format:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.10",
"eslint": "^9.39.2",
"globals": "^17.1.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
}
}