-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 864 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 864 Bytes
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": "cdkey-generator",
"version": "1.0.0",
"description": "企业级 CD Key 卡密生成与管理系统",
"private": true,
"workspaces": [
"server",
"client"
],
"scripts": {
"dev": "chcp 65001 >nul 2>&1 && concurrently -n server,client -c cyan,green \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npm run dev --workspace=server",
"dev:client": "npm run dev --workspace=client",
"build": "npm run build --workspaces",
"build:server": "npm run build --workspace=server",
"build:client": "npm run build --workspace=client",
"start": "npm run start --workspace=server",
"db:init": "npm run db:init --workspace=server",
"lint": "npm run lint --workspaces"
},
"devDependencies": {
"concurrently": "^8.2.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
}
}