-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 944 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
{
"name": "iot-hubber",
"version": "1.2.0-SNAPSHOT",
"description": "Graphical IOT Hub Connection Client",
"main": "index.js",
"scripts": {
"predocker": "cp .env.docker ./client/.env && cp .env.docker ./server/.env && cd ./client && yarn install && npm rebuild node-sass && PUBLIC_URL=/iot-hubber/ yarn build && cd ../server && yarn install",
"prestart": "cp .env ./client/.env && cp .env ./server/.env && yarn install && cd ./client && yarn install && cd ../server && yarn install",
"start": "concurrently --kill-others \"cd ./client && yarn start\" \"nodemon ./server\""
},
"repository": {
"type": "git",
"url": "[email protected]:lamtec/iot-hubber.git"
},
"keywords": [
"iot",
"hub",
"azure",
"client",
"iot-hub"
],
"author": "jro, vhi",
"license": "ISC",
"devDependencies": {
"concurrently": "^4.1.0"
},
"dependencies": {
"nodemon": "^1.18.11"
}
}