-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.7 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
{
"name": "iot_registry_portal",
"version": "1.0.0",
"description": "Web application allowing users to register and maintain their Internet of Things (IoT) devices.",
"main": "webpack.config.js",
"scripts": {
"test": "./node_modules/.bin/mocha ./src/backEnd/tests/integration/index.js",
"test-database": "mongod --dbpath ./src/backEnd/tests/database/ --port 33333",
"dev": "webpack-dev-server --hot --inline --watch-poll",
"build": "NODE_ENV=production webpack -p",
"start": "mongod --dbpath ./src/backEnd/database/ --port 33333 & nodemon src/server.js",
"database": "mongod --dbpath ./src/backEnd/database/ --port 33333",
"database-init": "node ./src/scripts/initiateDatabase.js",
"server-watch": "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kopecmartin/IoTRegistryPortal.git"
},
"keywords": [
"IoT",
"registration",
"portal",
"web",
"devices",
"maintenance"
],
"author": "Martin Kopec",
"license": "ISC",
"bugs": {
"url": "https://github.com/kopecmartin/IoTRegistryPortal/issues"
},
"homepage": "https://github.com/kopecmartin/IoTRegistryPortal#readme",
"dependencies": {
"body-parser": "^1.16.0",
"bootstrap-social": "^5.1.1",
"cors": "^2.8.1",
"crypto": "0.0.3",
"express": "^4.14.0",
"hash-history": "0.0.4",
"influx": "^5.0.6",
"jsonwebtoken": "^7.3.0",
"moment": "^2.17.1",
"mongodb": "^2.2.24",
"mongoose": "^4.8.4",
"morgan": "^1.8.1",
"mqtt": "^2.7.1",
"passport": "^0.3.2",
"passport-google-auth": "^1.0.1",
"patternfly": "^3.18.1",
"react": "^15.5.4",
"react-cookie": "^1.0.4",
"react-countdown-clock": "^1.1.0",
"react-dom": "^15.5.4",
"react-imageloader": "^2.1.0",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-skylight": "^0.4.1",
"react-syntax-highlight": "0.0.6",
"redux": "^3.6.0",
"request": "^2.81.0",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"superagent": "^3.5.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.26.1",
"file-loader": "^0.10.0",
"json-loader": "0.5.4",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"postcss-loader": "1.0.0",
"react-hot-loader": "^1.3.1",
"should": "^11.2.0",
"style-loader": "^0.13.1",
"supertest": "^3.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}