-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 2.8 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "singlehub",
"version": "0.0.0",
"author": "derwish-pro <[email protected]>",
"private": false,
"scripts": {
"start": "cross-env NODE_ENV=production node dist/app.js",
"start:dev-server": "cross-env NODE_ENV=development node dist/app.js",
"start:dev-client": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
"build": "npm run build:ts & npm run build:webpack",
"build:webpack": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"build:ts": "tsc",
"watch": "run-p -l watch:*",
"watch:ts": "tsc -w",
"watch:server": "nodemon dist/app.js",
"reset": "node bin/resetConfig.js",
"postinstall": "npm run build"
},
"dependencies": {
"body-parser": "^1.16.1",
"cookie-parser": "^1.4.3",
"cross-env": "^5.1.1",
"events": "^1.1.1",
"express": "^4.14.1",
"express-validator": "^4.3.0",
"lodash": "^4.17.4",
"logplease": "^1.2.14",
"miio": "^0.13.0",
"moment": "^2.19.1",
"morgan": "^1.8.1",
"mqtt": "^2.4.0",
"nedb": "^1.8.0",
"request": "^2.81.0",
"serialport": "^6.0.4",
"serve-favicon": "^2.3.2",
"shelljs": "^0.7.8",
"socket.io": "^2.0.4",
"socket.io-client": "^2.0.4",
"split": "^1.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.16.7",
"@types/cookie-parser": "^1.3.30",
"@types/express": "^4.0.35",
"@types/express-validator": "^3.0.0",
"@types/handlebars": "^4.0.31",
"@types/jquery": "^3.2.16",
"@types/jquery.noty": "^2.0.28",
"@types/lodash": "^4.14.52",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.7.32",
"@types/mqtt": "2.5.0",
"@types/nedb": "^1.8.5",
"@types/node": "^8.0.47",
"@types/request": "^2.0.1",
"@types/serve-favicon": "^2.2.28",
"@types/shelljs": "^0.7.2",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.31",
"@types/vis": "^4.17.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.7",
"empty-module": "0.0.2",
"file-loader": "^1.1.4",
"jade": "^1.11.0",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"npm-run-all": "^4.1.1",
"pug": "^2.0.0-rc.4",
"source-map-support": "^0.5.0",
"style-loader": "^0.19.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"ts-loader": "^3.1.1",
"typescript": "^2.4.1",
"vis": "^4.21.0",
"vue": "^2.4.4",
"vue-cookie": "^1.1.4",
"vue-loader": "^13.0.5",
"vue-moment": "^3.1.0",
"vue-router": "^3.0.1",
"vue-socket.io": "^2.1.1-a",
"vue-template-compiler": "^2.4.4",
"vuebar": "0.0.17",
"vuetify": "^0.16.9",
"webpack": "^3.6.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.20.0"
}
}