-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 905 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 905 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
{
"name": "mas",
"version": "0.1.0",
"description": "masServer 前后端一体化项目 - NestJS 后端 + Vue3 前端",
"private": true,
"scripts": {
"start:frontend": "cd frontend && npm run dev",
"start:backend": "cd backend && npm run start:dev",
"dev": "concurrently \"npm run start:frontend\" \"npm run start:backend\"",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"build:all": "npm run build:backend && npm run build:frontend",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install",
"lint:frontend": "cd frontend && npm run lint",
"lint:backend": "cd backend && npm run lint",
"preview:frontend": "cd frontend && npm run preview"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}