-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (31 loc) · 1.27 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
28
29
30
31
32
33
34
35
{
"name": "gateway-manager",
"version": "1.0.0",
"description": "This sample project is managing gateways - master devices that control multiple peripheral devices",
"main": "server/dist/index.js",
"scripts": {
"install:all": "npm install && npm --prefix \"./client\" install && npm --prefix \"./server\" install",
"dev:client": "npm --prefix \"./client\" start",
"dev:server": "docker-compose up -d mongodb mongo-seed && npm --prefix \"./server\" run dev",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"build:client": "npm --prefix \"./client\" run build && copyfiles -u 2 -a \"./client/build/**/*\" \"./server/docs\"",
"build": "npm run build:client && npm --prefix \"./server\" run build",
"start": "npm run build && npm --prefix \"./server\" start",
"docker:start": "npm run build && docker-compose up -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aymanaladdin/gateway-manager.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aymanaladdin/gateway-manager/issues"
},
"homepage": "https://github.com/aymanaladdin/gateway-manager#readme",
"dependencies": {
"concurrently": "^7.0.0",
"copyfiles": "^2.4.1"
}
}