-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "sales-book",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch-client": "npm run watch --prefix client",
"watch-api": "npm run watch --prefix api",
"start-api": "npm run start --prefix api",
"watch": "npm run watch-client & npm run watch-api",
"build-client": "npm run build --prefix client",
"build-api": "npm run build --prefix api",
"build-app": "npm run build-client && npm run build-api",
"start-app": "npm run build-client && npm run start-api",
"deploy": "npm run build --prefix client & npm run watch-api",
"install-deps": "npm install --include=dev --prefix client & npm install --include=dev --prefix api"
},
"author": "",
"license": "ISC"
}