-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.81 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
{
"name": "hybrid-control-panel",
"version": "0.0.1",
"description": "Control the hybrid rocket",
"main": "index.js",
"scripts": {
"start": "nf start",
"test": "mocha --compilers .:babel-core/register \"src/**/*-test.js\"",
"test-watch": "mocha --compilers .:babel-core/register \"src/**/*-test.js\" --watch",
"lint": "eslint ./",
"heroku-postbuild": "npm run build",
"build-react-server": "babel --retain-lines --ignore *-test.js src --out-dir views/react",
"watch-react-server": "babel --retain-lines --ignore *-test.js src --watch --out-dir views/react",
"build-react-client": "webpack",
"watch-react-client": "cross-env PROD=0 webpack --watch",
"build": "parallelshell \"npm run build-react-server\" \"npm run build-react-client\"",
"watch": "parallelshell \"npm run watch-react-server\" \"npm run watch-react-client\"",
"postinstall": "npm run build"
},
"author": "Pep Rodeja",
"license": "MIT",
"dependencies": {
"Gauge": "^1.0.2",
"axios": "^0.9.1",
"babel-polyfill": "^6.7.4",
"babel-runtime": "^6.6.1",
"body-parser": "^1.15.0",
"browser-saveas": "^1.0.0",
"compression": "^1.6.1",
"cookie-parser": "^1.4.1",
"cross-env": "^1.0.7",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"global": "^4.3.0",
"highcharts": "^4.2.5",
"highcharts-more": "^0.1.2",
"lodash": "^4.11.1",
"material-ui": "^0.15.0-beta.1",
"mathjs": "^3.1.4",
"md5": "^2.1.0",
"morgan": "^1.7.0",
"node-uuid": "^1.4.7",
"perfnow": "^0.2.0",
"radium": "^0.17.1",
"react": "^15.0.1",
"react-deep-force-update": "^2.0.1",
"react-dom": "^15.0.1",
"react-dropzone": "^3.4.0",
"react-google-charts": "^0.2.2",
"react-highcharts": "^8.3.2",
"react-redux": "^4.4.1",
"react-tap-event-plugin": "^1.0.0",
"recompose": "^0.17.0",
"redux": "^3.4.0",
"redux-devtools": "^3.2.0",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "1.0.10",
"redux-thunk": "^2.0.1",
"serialport": "^3.1.2",
"serve-favicon": "^2.3.0",
"socket.io": "^1.4.6",
"socket.io-client": "^1.4.6"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.3.0",
"foreman": "^1.4.1",
"mocha": "^2.4.5",
"parallelshell": "^2.0.0",
"react-addons-test-utils": "^15.0.1",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-isomorphic-tools": "^2.2.45"
},
"engines": {
"node": "^4.4.0"
}
}