This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.33 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
{
"name": "riot-io",
"version": "0.0.3",
"description": "React Internet of Things Dashboard & Controller",
"main": "./server/server.js",
"scripts": {
"build": "webpack --display-chunks --progress",
"start": "nodemon ./server/server.js --exec babel-node --presets es2015",
"start:webpack": "webpack-dev-server --hot --inline",
"watch": "npm run build -- --display-modules --watch",
"test": "NODE_ENV=test PORT=8081 MONGO_DB_HOST=mongodb://localhost/riot-test ava",
"watch:test": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/jarrettgreen/riot-io"
},
"keywords": [
"Express",
"React",
"MQTT",
"Internet of Things",
"IoT",
"Dashboard",
"Socket.IO"
],
"author": "Jarrett Green",
"license": "ISC",
"bugs": {
"url": "https://github.com/jarrettgreen/riot-io/issues"
},
"homepage": "https://github.com/jarrettgreen/riot-io/#readme",
"dependencies": {
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"chalk": "^1.1.3",
"css-loader": "^0.25.0",
"cuid": "^1.3.8",
"dot-env": "0.0.1",
"es6-promise": "^4.0.5",
"express": "^4.14.0",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.1.1",
"limax": "^1.4.1",
"material-ui": "^0.16.0",
"moment": "^2.15.1",
"mongoose": "^4.6.2",
"mqtt": "^2.0.1",
"react": "^15.3.2",
"react-bootstrap": "^0.30.5",
"react-dom": "^15.3.2",
"react-router": "^2.8.1",
"react-tap-event-plugin": "^1.0.0",
"redux-devtools-extension": "^1.0.0",
"request": "^2.75.0",
"sanitize-html": "^1.13.0",
"socket.io": "^1.4.8",
"style-loader": "^0.13.1",
"sweetalert": "^1.1.3"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"dotenv": "^2.0.0",
"enzyme": "^2.5.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"nodemon": "^1.10.2",
"react-addons-test-utils": "^15.3.2",
"script-loader": "^0.7.0",
"webpack": "^1.13.2"
},
"ava": {
"files": [
"client/**/*.spec.js",
"server/**/*.spec.js"
],
"failFast": true,
"require": [
"babel-register"
],
"babel": "inherit"
}
}