-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.09 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
{
"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 --workspace apps/web run test -- src ../../tests",
"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 ./..."
}
}