This repository has been archived by the owner on Sep 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.62 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
{
"name": "vite-react-starter",
"description": "Starter template for React 17",
"version": "0.0.1",
"author": "Wisdom <pdsu.wwz@foxmail.com>",
"license": "MIT",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview --host",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "tsc --pretty && eslint ./src --ext .js,.jsx,.tsx,.ts",
"lint:fix": "tsc --pretty && eslint --fix --cache --ext .js,.jsx,.tsx,.ts ./src"
},
"engines": {
"node": ">=14.18.x"
},
"keywords": [
"react",
"react17",
"vite",
"jest",
"babel",
"typescript",
"admin",
"example",
"template",
"starter",
"dashboard",
"framework",
"prototyping",
"antd"
],
"homepage": "https://github.com/pdsuwwz/vite-react-starter",
"bugs": {
"url": "https://github.com/pdsuwwz/vite-react-starter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pdsuwwz/vite-react-starter.git"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.21.7",
"axios": "^0.24.0",
"classnames": "^2.3.1",
"history": "^5.3.0",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^7.2.8",
"react-router": "^5.3.3",
"react-router-dom": "^5.3.3",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@redux-devtools/extension": "~3.2.2",
"@sucrase/jest-plugin": "^2.2.1",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"@types/jest": "^27.5.2",
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.45",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@vitejs/plugin-react": "^2.0.0",
"babel-jest": "^28.1.3",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"sass": "^1.54.0",
"typescript": "^4.7.4",
"vite": "^3.0.2"
}
}