Files
react-template/package.json
T

51 lines
1.2 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": {
2025-11-05 14:17:59 +08:00
"@reduxjs/toolkit": "^2.10.1",
"@tailwindcss/vite": "^4.1.16",
"axios": "^1.13.2",
"moment": "^2.30.1",
2025-11-05 14:17:59 +08:00
"react": "^19.2.0",
"react-dom": "^19.2.0",
2025-03-26 19:06:46 +08:00
"react-redux": "^9.2.0",
2025-11-05 14:17:59 +08:00
"react-router": "^7.9.5",
"react-router-dom": "^7.9.5",
"tailwindcss": "^4.1.16"
2025-03-26 19:06:46 +08:00
},
"devDependencies": {
2025-11-05 14:17:59 +08:00
"@eslint/js": "^9.39.1",
"@types/node": "^20.19.24",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
2025-08-03 10:50:12 +08:00
"@vitejs/plugin-react": "^4.7.0",
2025-11-05 14:17:59 +08:00
"eslint": "^9.39.1",
2025-04-11 11:12:34 +08:00
"eslint-plugin-react": "^7.37.5",
2025-03-26 19:06:46 +08:00
"eslint-plugin-react-hooks": "^5.2.0",
2025-11-05 14:17:59 +08:00
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
2025-08-03 10:50:12 +08:00
"prettier": "^3.6.2",
2025-05-16 08:08:35 +00:00
"typescript": "~5.8.3",
2025-11-05 14:17:59 +08:00
"typescript-eslint": "^8.46.3",
"vite": "^7.1.12"
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
]
}
}