forked from hunghg255/reactjs-handle-refresh-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "reactjs-refresh-token",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "npm run build && vite preview",
"lint": "eslint --ext .ts,.tsx src --color",
"format": "prettier --write \"./src/**/*.{ts,tsx,json}\"",
"prepare": "husky install",
"analyze": "source-map-explorer 'dist/assets/*.js'"
},
"dependencies": {
"antd-dayjs-vite-plugin": "^1.2.2",
"axios": "^1.3.2",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"umi-request": "^1.4.0"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.1.0",
"eslint": "^8.31.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^8.0.0",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"source-map-explorer": "^2.5.3",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-checker": "^0.5.3",
"vite-plugin-environment": "^1.1.3"
}
}