feat: scaffold new React + TypeScript + Vite project

This commit is contained in:
Loic Coenen
2026-06-23 14:13:22 +02:00
committed by Loic Coenen (aider)
commit 0965f585d0
18 changed files with 7962 additions and 0 deletions

36
package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "berlin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"format": "eslint . --fix && prettier --write .",
"e2e": "cypress run",
"ci": "npm run format && npm run test && npm run e2e"
},
"dependencies": {
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"cypress": "^14.5.4",
"eslint": "^10.5.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.6.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.61.0",
"vite": "^8.1.0",
"vitest": "^3.2.6"
}
}