-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.4 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
{
"name": "sensor",
"version": "1.0.0",
"description": "A Sensor Information App",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack -p --config ./webpack.prod.config.js",
"lint": "eslint scripts",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"start": "webpack-dev-server --progress --colors --hot --content-base ./server/public --config ./webpack.config.js",
"test": "mocha --compilers js:babel-core/register --recursive -r mock-local-storage"
},
"repository": {
"type": "git",
"url": "https://github.com/henninghaakonsen/sensorapp"
},
"engines": {
"node": "8.5.0",
"npm": "5.4.1"
},
"author": "Henning Håkonsen",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"extract-text-webpack-plugin": "^1.0.1",
"flow-bin": "^0.35.0",
"isomorphic-fetch": "^2.1.1",
"jsx-loader": "^0.13.2",
"node-sass": "^3.13.1",
"normalizr": "^2.3.1",
"postcss-loader": "^0.13.0",
"react-hot-loader": "^1.3.1",
"style-loader": "^0.13.2",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.5"
},
"dependencies": {
"express": "^4.15.4",
"history": "^4.7.2",
"js-cookie": "^2.1.4",
"lodash": "^4.17.5",
"material-ui": "^0.19.4",
"material-ui-icons": "^1.0.0-beta.5",
"moment": "^2.19.1",
"npm": "^5.7.1",
"plotly.js": "^1.31.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-dynamic-font": "^0.0.4",
"react-flexview": "^1.0.13",
"react-form-validator-core": "^0.1.1",
"react-linechart": "^1.1.12",
"react-material-icons": "^1.0.2",
"react-material-ui-form-validator": "^1.0.1",
"react-plotlyjs": "^0.4.4",
"react-redux": "^4.4.8",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-table": "^6.7.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.7.2",
"redux-logger": "^2.10.2",
"redux-saga": "^0.12.1",
"sass": "^1.0.0-beta.5.2",
"sass-loader": "^6.0.6"
}
}