-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.65 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
{
"name": "react-sample",
"version": "1.0.0-alpha",
"description": "BoilerPlate For React + Material UI + React Router + Redux",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"server": "nodemon server/index.js -w server/ --exec babel-node --preset env",
"precommit": "lint-staged"
},
"engines": {
"node": ">=v6.10.0",
"npm": ">=3.10.10"
},
"proxy": {
"/api": {
"target": "http://localhost:8000"
}
},
"dependencies": {
"immutable": "^3.8.1",
"material-ui": "^0.19.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.2",
"react-scripts": "1.0.10",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.0",
"express": "^4.15.4",
"husky": "^0.14.3",
"lint-staged": "^4.0.4",
"nodemon": "^1.11.0",
"prettier-eslint": "^6.4.2",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"uuid": "^3.1.0"
},
"optionalDependencies": {
"fsevents": "*"
},
"lint-staged": {
"src/**/*.js": [
"eslint"
],
"public/**/*.css": [
"stylelint"
],
"src/**/*.css": [
"stylelint"
]
}
}