-
Notifications
You must be signed in to change notification settings - Fork 356
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.23 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": "cpa-manager-plus",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"apps/web",
"apps/docs"
],
"scripts": {
"dev": "npm --workspace apps/web run dev",
"dev:demo": "npm --workspace apps/web run dev:demo",
"build": "npm --workspace apps/web run build",
"build:demo": "npm --workspace apps/web run build:demo",
"docs:dev": "npm --workspace apps/docs run dev",
"docs:build": "npm --workspace apps/docs run build",
"docs:preview": "npm --workspace apps/docs run preview",
"check:demo-isolation": "node bin/release/check-web-demo-isolation.mjs",
"preview": "npm --workspace apps/web run preview",
"preview:demo": "npm --workspace apps/web run preview:demo",
"release:validate": "node bin/release/validate-release.mjs",
"test": "npm run test:web && npm run test:repo",
"test:web": "npm --workspace apps/web run test -- src",
"test:repo": "vitest run tests/*.test.mjs --exclude tests/nativeControlScripts.test.mjs",
"lint": "npm --workspace apps/web run lint",
"format": "npm --workspace apps/web run format",
"type-check": "npm --workspace apps/web run type-check",
"manager-server:test": "cd apps/manager-server && go test ./..."
}
}