-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.74 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "react-17-boilerplate",
"version": "0.1.0",
"private": false,
"homepage": "http://react-17-task-management.s3-website-us-east-1.amazonaws.com",
"dependencies": {
"@ant-design/icons": "^4.5.0",
"@reduxjs/toolkit": "^1.5.0",
"@testing-library/dom": "^8.11.1",
"antd": "^4.12.3",
"axios": "^0.21.1",
"formik": "^2.2.6",
"formik-antd": "^2.0.1",
"js-sha512": "^0.8.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"qs": "^6.9.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-lottie": "^1.2.3",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"redux": "^4.0.5",
"styled-components": "^5.2.1",
"typeface-roboto": "^1.1.13",
"web-vitals": "^0.2.4",
"yup": "^0.32.9"
},
"scripts": {
"start": "cross-env PORT=3601 react-scripts start --no-cache",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:dev": "env-cmd -f .env.dev react-scripts build",
"eslint-fix": "eslint --fix . --ext .js, .",
"eslint": "eslint src/**/*.{js,jsx}",
"lint": "prettier --check .",
"format": "prettier --write \"./**/*.{js,jsx,css,scss,md}\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint --fix",
"npm run eslint"
],
"**/*.{json,css,scss,md}": [
"prettier --write",
"npm run format"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-react": "^7.16.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^4.0.1",
"@testing-library/user-event": "^12.7.1",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"fs": "0.0.1-security",
"husky": "^4.3.8",
"i": "^0.3.6",
"jest": "^26.6.3",
"jest-dom": "^4.0.0",
"lint-staged": "^10.5.4",
"msw": "^0.25.0",
"npm": "^6.14.11",
"path": "^0.12.7",
"prettier": "^2.5.1",
"prop-types": "^15.7.2",
"react-test-renderer": "^17.0.1"
}
}