-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.57 KB
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
{
"name": "react-blog",
"version": "0.1.0",
"private": true,
"dependencies": {
"antd": "^3.6.1",
"firebase": "^5.0.4",
"formik": "^0.11.11",
"husky": "^0.14.3",
"lint-staged": "^7.1.2",
"prettier": "^1.12.1",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-app-rewire-styled-components": "^3.0.2",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-mock-store": "^1.5.1",
"redux-thunk": "^2.2.0",
"styled-components": "^3.3.2",
"yup": "^0.25.1"
},
"lint-staged": {
"src/**/*.{scss,css}": [
"prettier --config .prettierrc --write",
"git add"
],
"src/**/*.{js,jsx,json}": [
"eslint --fix",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject",
"lint": "node_modules/.bin/eslint --ext=js --ext=jsx ."
},
"devDependencies": {
"babel-plugin-import": "^1.7.0",
"babel-plugin-styled-components": "^1.5.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-alias": "^1.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.4.0",
"react-app-rewired": "^1.5.2"
}
}