-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.07 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": "webmiddle-devtools",
"version": "0.2.3",
"description": "webmiddle devtools",
"author": "Manuel Dell'Elce",
"license": "MIT",
"flow": "flow",
"bin": "./bin/index.js",
"files": [
"build",
"bin"
],
"engines": {
"node": ">=8.10.0"
},
"dependencies": {
"brace": "^0.11.0",
"classnames": "^2.2.5",
"event-emitter": "^0.3.5",
"flow-bin": "^0.69.0",
"font-awesome": "^4.7.0",
"history": "^4.6.1",
"lodash": "^4.17.4",
"material-ui": "^0.20.0",
"node-event-emitter": "0.0.1",
"noty": "^3.2.0-beta",
"opn": "^5.4.0",
"pretty": "^2.0.0",
"prop-types": "^15.6.2",
"react": "^16.3.1",
"react-ace": "^6.0.0",
"react-dom": "^16.3.1",
"react-draggable-tab": "^0.10.1",
"react-inspector": "^2.2.2",
"react-redux": "^5.0.4",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.5",
"react-split-pane": "^0.1.63",
"react-treeview": "^0.4.7",
"redux": "^3.6.0",
"redux-form": "^7.3.0",
"redux-form-material-ui": "^4.3.2",
"redux-thunk": "^2.2.0",
"serve-handler": "^5.0.5",
"uuid": "^3.0.1"
},
"scripts": {
"start": "cross-env PORT=3001 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-eslint": "9.0.0",
"cross-env": "^5.2.0",
"eslint": "5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^v7.11.1",
"husky": "^1.1.2",
"lint-staged": "^7.3.0",
"node-sass": "^4.8.3",
"prettier": "^1.14.3",
"redux-logger": "^3.0.6",
"sass-loader": "^6.0.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}