forked from mvolkmann/iiot-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 781 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 781 Bytes
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
{
"name": "valve-ui",
"version": "0.1.0",
"private": true,
"devDependencies": {
"eslint": "^3.15.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-react": "^6.9.0",
"node-sass": "^4.5.0",
"react-scripts": "0.8.5"
},
"dependencies": {
"chart.js": "^2.4.0",
"formidable-charts": "^0.0.7",
"react": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.2",
"svg-pan-zoom": "^3.4.1"
},
"scripts": {
"build-css": "node-sass src/ -o src/",
"watch-css": "npm run build-css && node-sass src/ -o src/ --watch",
"start": "react-scripts start & npm run watch-css",
"build": "react-scripts build && npm run build-css",
"test": "react-scripts test --env=jsdom",
"lint": "eslint src/**/*.js"
}
}