-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
31 lines (31 loc) · 1011 Bytes
/
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
28
29
30
31
{
"name": "@quickmeet/root",
"version": "1.0.0",
"description": "",
"author": "Cefalo https://github.com/Cefalo",
"license": "MIT",
"scripts": {
"build": "npm run build --workspaces",
"build:client": "npm run build --w client",
"build:client:watch": "npm run build:watch --w client",
"build:chrome": "npm run chrome:build --w client",
"build:shared": "npm run build --w shared",
"build:server": "npm run build --w server",
"start": "npm run start --w server",
"start:server": "npm run start:server --w server",
"start:dev": "npm run start:dev --w server",
"start:client": "npm run start --w client",
"migration:run": "npm run migration:run --w server",
"start:prod": "cd server && npm run start",
"start:all": "npm-run-all2 -p start:client start:server",
"start:docker": "docker-compose up --build --remove-orphans"
},
"workspaces": [
"shared",
"client",
"server"
],
"devDependencies": {
"npm-run-all2": "^7.0.1"
}
}