-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "knot-modbus-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"config": "^3.0.1",
"dbus": "^1.0.3",
"eslint-config-airbnb": "^17.1.0",
"eventemitter3": "^3.1.0",
"express": "^4.16.4",
"http-proxy-middleware": "^0.19.1",
"isomorphic-ws": "^4.0.1",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-scripts": "2.1.8",
"shortid": "^2.2.14",
"ws": "^6.2.1"
},
"scripts": {
"start": "react-scripts start",
"start_dev:server": "babel-node server",
"start:server": "babel server --out-dir build_server && node build_server",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --fix ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"pre-commit": [
"lint"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-module-resolver": "^3.2.0",
"babel-preset-env": "^1.7.0",
"pre-commit": "^1.2.2"
}
}