-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.5 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "server",
"version": "0.1.0",
"private": true,
"keywords": [],
"author": "",
"description": "",
"license": "ISC",
"scripts": {
"start": "npm run server && nodemon server.js",
"start-secure": "npm run server && nodemon server.js -https",
"build": "npm-run-all build:server",
"build:server": "npm install",
"build:client": "cd cloudgarden-pwa && yarn && yarn build",
"clean": "npm-run-all clean:server",
"clean:server": "rimraf node_modules",
"clean:client": "rimraf cloudgarden-pwa/node_modules && rimraf cloudgarden-pwa/build",
"client": "npm run clean:client && npm run build:client",
"server": "npm run clean && npm run build",
"test": "cd cloudgarden-pwa && yarn test",
"test:watch": "cd cloudgarden-pwa && yarn test:watch"
},
"dependencies": {
"azure-iot-device": "^1.12.2",
"azure-iot-device-amqp": "^1.11.2",
"azure-iot-device-mqtt": "^1.11.2",
"body-parser": "^1.19.0",
"chalk": "^3.0.0",
"child_process": "^1.0.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"fs": "0.0.1-security",
"http": "0.0.0",
"http-errors": "~1.6.3",
"https": "^1.0.0",
"johnny-five": "^1.4.0",
"minimist": ">=1.2.3",
"morgan": "~1.9.1",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"open": "^7.0.0",
"path": "^0.12.7",
"socket.io": "^2.3.0",
"web-push": "^3.4.3"
},
"devDependencies": {
"rimraf": "^3.0.2"
}
}