-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.67 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.67 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
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
{
"name": "react-quickstart",
"version": "0.1.0",
"scripts": {
"start": "cross-env ESLINT_NO_DEV_ERRORS=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --silent",
"test:no-watch": "ultra test --watchAll=false",
"test:coverage": "react-scripts test --silent --coverage --watchAll=false",
"eject": "react-scripts eject",
"lint": "ultra eslint && ultra stylelint && ultra prettier",
"lint:fix": "ultra eslint:fix && ultra stylelint:fix && ultra prettier:fix",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"stylelint": "stylelint .",
"stylelint:fix": "stylelint --fix .",
"prettier": "prettier --check './**/*.{js,jsx,ts,tsx,css,json}' --config ./.prettierrc",
"prettier:fix": "prettier --write './**/*.{js,jsx,ts,tsx,css,json}' --config ./.prettierrc",
"postinstall": "husky install"
},
"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"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.js",
"!src/store.js"
]
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"classnames": "^2.2.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"cross-env": "^7.0.3",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-import": "^0.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.6.0",
"eslint-plugin-unicorn": "^43.0.2",
"husky": "^8.0.1",
"istanbul": "^0.4.5",
"prettier": "^2.7.1",
"sass": "^1.54.4",
"sass-loader": "^13.0.2",
"stylelint": "^14.9.1",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-high-performance-animation": "^1.5.1",
"stylelint-no-unsupported-browser-features": "^5.0.3",
"ultra-runner": "^3.10.5"
}
}