-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.37 KB
/
package.json
File metadata and controls
33 lines (33 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
30
31
32
33
{
"name": "zenith-admin",
"version": "0.7.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev -w @zenith/server\" \"npm run dev -w @zenith/web\"",
"dev:server": "npm run dev -w @zenith/server",
"dev:web": "npm run dev -w @zenith/web",
"dev:demo": "npm run dev:demo -w @zenith/web",
"docs:dev": "vitepress dev docs --host 0.0.0.0 --port 4177",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs --host 0.0.0.0 --port 4178",
"build": "npm run build -w @zenith/shared && npm run build -w @zenith/server && npm run build -w @zenith/web",
"build:demo": "npm run build -w @zenith/shared && npm run build:demo -w @zenith/web",
"db:generate": "npm run db:generate -w @zenith/server",
"db:migrate": "npm run db:migrate -w @zenith/server",
"db:seed": "npm run db:seed -w @zenith/server",
"test": "npm run test -w @zenith/server && npm run test -w @zenith/web",
"test:server": "npm run test -w @zenith/server",
"test:web": "npm run test -w @zenith/web",
"lint": "npm run lint -w @zenith/server && npm run lint -w @zenith/web",
"lint:fix": "npm run lint:fix -w @zenith/server && npm run lint:fix -w @zenith/web"
},
"devDependencies": {
"concurrently": "^9.2.1",
"jsdom": "^29.0.2",
"typescript": "^6.0.3",
"vitepress": "^1.6.4"
}
}