generated from erunks/react-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.54 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
{
"name": "react-template",
"version": "0.1.0",
"private": false,
"scripts": {
"build": "react-scripts build",
"coverage": "open ./coverage/lcov-report/index.html",
"eject": "react-scripts eject",
"git:update": "git add -u",
"lint:all": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"lint:staged": "lint-staged",
"lint": "eslint . --quiet",
"precommit": "run-s lint:staged",
"prepare": "husky install",
"prettier:check": "prettier --check . --ignore-path .prettierignore",
"pretty:all": "pretty-quick",
"pretty:staged": "pretty-quick --staged",
"prettylint:all": "run-s pretty:all lint:all",
"start": "BROWSER=none react-scripts start",
"test": "jest",
"test:watch": "jest --watch"
},
"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"
]
},
"dependencies": {
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "7.0.2",
"@testing-library/user-event": "14.6.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.28.2",
"react-scripts": "5.0.1",
"web-vitals": "3.5.2"
},
"devDependencies": {
"@babel/core": "7.26.7",
"@babel/eslint-parser": "7.26.5",
"@babel/preset-env": "7.26.7",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@types/jest": "27.5.2",
"@types/node": "16.18.125",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.10.0",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"jest-svg-transformer": "1.0.0",
"lint-staged": "13.3.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"pretty-quick": "3.3.1",
"sass": "1.83.4",
"ts-jest": "27.1.5",
"ts-node": "10.9.2",
"typescript": "4.9.5"
}
}