-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 891 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 891 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
{
"name": "gitlab-reviewer",
"version": "1.0.0",
"description": "GitLab代码review辅助工具",
"main": "index.js",
"scripts": {
"start": "cd server && npm start",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "cd server && npm run dev",
"dev:client": "cd client && npm start",
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"install:all": "npm install && cd client && npm install && cd ../server && npm install",
"clean": "cd client && npm run build && cd ../server && npm run build",
"test": "cd server && npm test"
},
"keywords": ["gitlab", "code-review", "react", "nodejs"],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}