-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.05 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.05 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
{
"name": "aurora-server",
"version": "1.0.0",
"description": "Express.js server to handle state of IoT applications",
"main": "index.js",
"scripts": {
"start": "supervisor -i webapp,node_modules index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"restart": "npm install && npm run build && forever restart index.js",
"build": "webpack --config webpack.production.js --progress"
},
"author": "Francesco Marassi",
"license": "ISC",
"dependencies": {
"axios": "^0.15.3",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.0",
"classnames": "^2.2.5",
"compression": "^1.6.2",
"express": "^4.15.0",
"moment": "^2.18.1",
"mongodb": "^2.2.24",
"mongojs": "^2.4.0",
"morgan": "^1.8.1",
"mosca": "^2.2.0",
"node-schedule": "^1.2.1",
"passport": "^0.3.2",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"react": "^15.4.2",
"react-anime": "^0.3.4",
"react-dom": "^15.4.2",
"react-icons": "^2.2.3",
"react-notify-toast": "^0.1.5",
"react-redux": "^5.0.3",
"react-router-dom": "^4.0.0",
"react-slider": "^0.7.0",
"react-trend": "^1.2.2",
"redux": "^3.6.0",
"redux-localstorage": "^0.4.1",
"redux-logger": "^2.8.2",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"supervisor": "^0.12.0",
"uuid": "^3.0.1",
"voucher-code-generator": "^1.1.1"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-plugin-module-resolver": "^2.5.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"compression-webpack-plugin": "^0.3.2",
"css-loader": "^0.27.1",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.0",
"redux-devtools": "^3.3.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.2",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1"
}
}