-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
35 lines (35 loc) · 1013 Bytes
/
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
{
"name": "web-bluetooth-heart-rate-monitor",
"version": "0.0.1",
"description": "Reading the heart rate and drawing a chart based on the collected data",
"scripts": {
"start": "node server.js",
"build": "webpack --config config/webpack.production.js",
"lint": "eslint src"
},
"devDependencies": {
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"css-loader": "^0.25.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.2",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"html-webpack-plugin": "^3.1.0",
"material-ui": "^0.15.4",
"node-sass": "^4.8.3",
"react": "^15.0.0",
"react-d3-zoom": "^1.1.2",
"react-dom": "*",
"react-tap-event-plugin": "^1.0.0",
"sass-loader": "^6.0.7"
}
}