Files
react-template/package.json
T

46 lines
1.0 KiB
JSON
Raw Normal View History

2025-03-26 19:06:46 +08:00
{
2025-03-26 20:33:37 +08:00
"name": "react-template",
2025-03-26 19:06:46 +08:00
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
2025-09-15 20:25:29 +08:00
"preview": "vite preview",
"deploy": "pnpm build && gh-pages -d dist",
"predeploy": "pnpm build"
2025-03-26 19:06:46 +08:00
},
"dependencies": {
"@reduxjs/toolkit": "^2.11.2",
2026-03-21 03:24:52 +08:00
"@tailwindcss/vite": "^4.2.2",
"axios": "^1.13.6",
"dayjs": "^1.11.20",
"react": "^19.2.4",
"react-dom": "^19.2.4",
2025-03-26 19:06:46 +08:00
"react-redux": "^9.2.0",
"react-router": "^7.13.1",
"react-router-dom": "^7.13.1",
"redux-persist": "^6.0.0",
2026-03-21 03:24:52 +08:00
"tailwindcss": "^4.2.2"
2025-03-26 19:06:46 +08:00
},
"devDependencies": {
"@types/node": "^22.19.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
2026-03-21 03:24:52 +08:00
"@vitejs/plugin-react": "^6.0.1",
2025-11-05 14:17:59 +08:00
"globals": "^16.5.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
2026-03-21 03:24:52 +08:00
"vite": "^8.0.1"
2025-03-26 19:06:46 +08:00
},
"pnpm": {
"ignoredBuiltDependencies": [
"esbuild"
2025-05-29 08:26:02 +08:00
],
"onlyBuiltDependencies": [
"@tailwindcss/oxide"
2025-03-26 19:06:46 +08:00
]
}
}