-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.73 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
{
"name": "react-typescript-template",
"version": "0.1.1",
"private": false,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"coverage": "pnpm test -- --coverage --watchAll=false",
"style-lint": "stylelint --config=.stylelintrc.json \"src/**/*.scss\" --formatter verbose",
"lint": "eslint --max-warnings=0 --fix --ext .ts,.tsx .",
"format": "prettier --write 'src/**/*.{ts,tsx}' --config ./.prettierrc"
},
"dependencies": {
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.2",
"react-scripts": "^5.0.1",
"typescript": "^4.9.4",
"web-vitals": "^3.1.1"
},
"devDependencies": {
"@testing-library/dom": "^8.19.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^12.8.3",
"@tsconfig/create-react-app": "^1.0.2",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.178",
"@types/node": "^12.20.37",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^7.0.4",
"immer": ">=9.0.6",
"lint-staged": "^12.1.4",
"nth-check": ">=2.0.1",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"sass": "^1.45.1",
"stylelint": "^14.2.0",
"stylelint-config-standard-scss": "^3.0.0",
"workbox-core": "^6.5.4",
"workbox-expiration": "^6.5.4",
"workbox-precaching": "^6.5.4",
"workbox-routing": "^6.5.4",
"workbox-strategies": "^6.5.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!src/index.tsx",
"!src/reportWebVitals.ts",
"!src/serviceWorker.ts",
"!src/serviceWorkerRegistration.ts"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run format",
"npm run lint"
],
"src/**/*.scss": "npm run style-lint"
}
}