-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.45 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
{
"name": "overwatch",
"version": "1.0.1",
"description": "Personal home automation with real time messaging computer",
"author": "BATTISTELLA Damien <[email protected]>",
"license": "MIT",
"main": "server.js",
"scripts": {
"watch": "node_modules/.bin/webpack --config webpack.dev.js --mode development --watch --progress",
"start": "node_modules/.bin/webpack-dev-server --config webpack.dev.js --mode development",
"dev": "node_modules/.bin/webpack --config webpack.dev.js --mode development",
"build": "node_modules/.bin/webpack --config webpack.prod.js --mode production",
"stats": "node_modules/.bin/webpack --config webpack.prod.js --mode production --profile --json > stats.json"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@babel/runtime": "^7.6.3",
"axios": "^0.18.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"font-awesome": "^4.7.0",
"font-awesome-webpack": "0.0.5-beta.2",
"jsmpeg": "^1.0.0",
"jsonfile": "^5.0.0",
"method-override": "^3.0.0",
"mqtt": "^2.18.8",
"net": "^1.0.2",
"netatmo": "^2.3.0",
"node-config": "0.0.2",
"node-cron": "^2.0.3",
"node-rtsp-stream-es6": "^1.0.7",
"nouislider": "^13.1.5",
"purecss": "^1.0.1",
"rtsp-ffmpeg": "0.0.14",
"sequelize": "^5.21.2",
"serve-favicon": "^2.5.0",
"sqlite3": "^4.1.0",
"system-sleep": "^1.3.6",
"tls": "0.0.1",
"vue": "^2.6.10",
"vue-lazyload": "^1.3.3",
"vue-moment": "^4.0.0",
"vue-multiselect": "^2.1.6",
"vue-range-slider": "^0.6.0",
"vue-resource": "^1.5.1",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.1",
"webpack-material-design-icons": "^0.1.0",
"ws": "^6.2.1",
"yeelight-wifi": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^2.0.2",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"node-sass": "^4.13.0",
"sass-loader": "^7.3.1",
"script-loader": "^0.7.2",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
}