generated from Yixi/vite-react-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.97 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
{
"name": "y-bmw",
"version": "1.0.0",
"main": "index.js",
"author": "Yixi <lyh1112@gmail.com>",
"license": "MIT",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"test": "jest",
"lint": "eslint ./src",
"typecheck": "tsc --noEmit",
"postinstall": "husky install"
},
"lint-staged": {
"./src/**/*.{js,jsx,ts,tsx,json,md}": [
"yarn lint --fix",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@types/classnames": "^2.3.1",
"@types/lodash": "^4.17.9",
"@types/md5": "^2.3.5",
"@types/node-forge": "^1.3.2",
"@types/react": "^18.0.28",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.11",
"antd": "^5.4.0",
"axios": "^1.3.5",
"axios-hooks": "^4.0.0",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"node-forge": "^1.3.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"less": "^4.1.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"vite": "^4.1.4"
}
}