-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.2 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "SmartHome-Data-Provider",
"version": "1.0.0",
"description": "This is the node express server which provides agular apps which serves as a dashboards in my flat with the needed data",
"author": "Felix Schober",
"private": true,
"main": "scr/server.js",
"dependencies": {
"@azure/cosmos": "^3.4.0",
"@lynbarry/mvg-api": "^2.0.1",
"@types/documentdb": "^1.10.5",
"@types/documentdb-server": "0.0.32",
"@types/node-schedule": "^1.2.2",
"@types/request": "^2.47.0",
"@types/request-promise-native": "^1.0.14",
"@types/socket.io": "^1.4.34",
"babel-cli": "^6.26.0",
"babel-loader": "^6.2.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.9.0",
"base64-img": "^1.0.4",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.3",
"errorhandler": "^1.5.0",
"express": "^4.15.5",
"method-override": "^2.3.10",
"moment": "^2.19.4",
"mongodb": "^3.3.3",
"mongoose": "^5.3.9",
"morgan": "^1.9.1",
"node-ical": "^0.8.0",
"node-schedule": "^1.2.5",
"python-shell": "^0.4.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"serve-favicon": "^2.5.0",
"socket.io": "^2.1.1",
"tplink-smarthome-api": "^0.20.1"
},
"scripts": {
"dev-windows": "SET NODE_ENV=development && nodemon ./bin/www",
"dev-mac": "NODE_ENV=development nodemon ./bin/www",
"grunt": "grunt",
"start": "node ./bin/www",
"start-debug": "node $NODE_DEBUG_OPTION ./bin/www",
"start-windows": "node %NODE_DEBUG_OPTION% ./bin/www",
"start-windows-nodebug": "node ./bin/www",
"start-forever": "forever start ./bin/www",
"stop-forever": "forever stopall"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.11.1",
"@types/method-override": "0.0.31",
"@types/mongodb": "^3.0.19",
"@types/mongoose": "^5.0.15",
"@types/morgan": "^1.7.35",
"@types/node": "^10.3.0",
"babel-core": "^6.26.3",
"babel-loader": "^6.4.1",
"grunt": "^1.0.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-ts": "^6.0.0-beta.21",
"typescript": "^2.9.1"
}
}