kaiqiu-rank-list/package.json
kyuuseiryuu 2f82a4edf5 feat(Profile)
- add react-router
2026-01-28 13:00:48 +09:00

29 lines
773 B
JSON

{
"name": "bun-react-template",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot src/index.tsx",
"build": "bun build ./src/index.html --outdir=dist --sourcemap --target=browser --minify --define:process.env.NODE_ENV='\"production\"' --env='BUN_PUBLIC_*'",
"start": "NODE_ENV=production bun src/index.tsx"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"ahooks": "^3.9.6",
"antd": "^6.2.1",
"cheerio": "^1.2.0",
"lodash": "^4.17.23",
"react": "^19",
"react-dom": "^19",
"react-router": "^7.13.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@types/bun": "latest",
"@types/lodash": "^4.17.23",
"@types/react": "^19",
"@types/react-dom": "^19"
}
}