1
0
Fork 0
react-playground/package.json

27 lines
794 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": {
"@mui/icons-material": "^7.3.1",
"i18next": "^25.3.2",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-fs-backend": "^2.6.0",
"i18next-http-backend": "^3.0.2",
"node": "^22.18.0",
"react": "^19",
"react-dom": "^19",
"react-i18next": "^15.6.1"
},
"devDependencies": {
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/bun": "latest"
}
}