-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "todo-app",
"description": "",
"version": "0.1.0",
"author": "",
"dependencies": {
"@emotion/core": "^10.0.15",
"@emotion/styled": "^10.0.15",
"antd": "^3.23.2",
"axios": "^0.19.0",
"formik": "^1.5.8",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-beautiful-dnd": "^11.0.5",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.0.1",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-loader": "^8.0.6",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.4.0",
"husky": "^3.0.2",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"format": "prettier --write '**/*.{js,jsx,json,md}'",
"format:changed": "pretty-quick",
"format:staged": "pretty-quick --staged",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "eslint **/*.js --quiet",
"lint-fix": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "format:staged"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"npm": ">=4",
"node": ">=6"
}
}