-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "fenix",
"version": "0.0.1",
"description": "A sensor exploration and analyze platform",
"main": "app/main.js",
"scripts": {
"start": "./node_modules/.bin/electron .",
"test": "mocha --recursive app/test/",
"build": "./node_modules/.bin/webpack --progress --colors && grunt",
"build-production": "./node_modules/.bin/webpack --progress --colors -p --define process.env.NODE_ENV='\"production\"' && grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/gsavin/fenix.git"
},
"keywords": ["mqtt", "sensor", "monitoring"],
"author": "Guilhelm Savin",
"license": "CeCILL-B",
"bugs": {
"url": "https://github.com/gsavin/fenix/issues"
},
"homepage": "https://github.com/gsavin/fenix",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"electron-prebuilt": "^1.0.2",
"file-loader": "^0.8.5",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-contrib-pug": "^1.0.0",
"grunt-contrib-sass": "^0.9.2",
"sass-loader": "^3.2.0",
"should": "^8.1.0",
"should-sinon": "0.0.3",
"sinon": "^1.17.2",
"url-loader": "^0.5.7",
"webpack": "^1.13.0"
},
"dependencies": {
"mongoose": "^4.2.4",
"node-sass": "^3.7.0",
"react-router5": "^3.1.0",
"router5": "^3.0.3",
"router5-listeners": "^3.0.0",
"winston": "^2.1.1"
}
}