initial commit

This commit is contained in:
2025-11-06 21:51:00 +01:00
commit a81cb671b8
18 changed files with 1520 additions and 0 deletions

36
package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "bun-react-template",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"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.ts"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@fontsource/roboto": "5.2.8",
"@mui/icons-material": "7.3.5",
"@mui/material": "7.3.5",
"react": "19",
"react-dom": "19",
"react-router-dom": "^7.9.5"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@stylistic/eslint-plugin": "5.5.0",
"@types/bun": "1.3.1",
"@types/react": "19",
"@types/react-dom": "19",
"eslint": "9.39.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-unused-imports": "^4.3.0",
"prettier": "3.6.2",
"typescript": "5.9.3",
"typescript-eslint": "8.46.3"
}
}