-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.23 KB
/
package.json
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
{
"name": "labmate",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run prepare && concurrently \"npm run start:server\" \"npm run start:client\"",
"start:server": "cd packages/server && npm start",
"start:client": "cd packages/client && npm start",
"start:prod": "npm run prepare && concurrently \"npm run start:prod:server\" \"npm run start:prod:client\"",
"start:prod:server": "cd packages/server && npm start:prod",
"start:prod:client": "cd packages/client && npm start:prod",
"prepare": "concurrently \"npm run prepare:server\" \"npm run prepare:client\"",
"prepare:server": "cd packages/server && npm install",
"prepare:client": "cd packages/client && npm install",
"build": "npm run prepare && concurrently \"npm run build:server\" \"npm run build:client\"",
"build:server": "cd packages/server && npm run build",
"build:client": "cd packages/client && npm run build",
"test": "npm run prepare && concurrently \"npm run test:client\" \"npm run test:server\"",
"test:client": "cd packages/client && npm test",
"test:server": "cd packages/server && npm test"
},
"license": "GPL-3.0",
"devDependencies": {
"concurrently": "^7.1.0"
}
}