Files
clement-saillant-cc/package.json
T
L'électron rare 96c3062662 chore: scaffold vite react-three project
Establish initial project structure for LE BUS (clement.saillant.cc),
a demoscene-style personal identity hub built with Vite, React, and
react-three-fiber.

Changes:
- Add package.json with dependencies (React 19, Three.js,
  react-three/fiber, zustand, playwright for e2e)
- Add tsconfig.json with ES2022 target and react-jsx support
- Add vite.config.ts with React plugin
- Add minimal index.html, src/main.tsx, and src/style.css
- Add README.md with usage commands
- Add .gitignore (node_modules, dist, test artifacts, .DS_Store)
- Generate package-lock.json via npm install

Note: chiptune3 removed from dependencies (not on npm registry;
will be isolated behind src/audio/modPlayer.ts in Task 11 with mocks).

Build and test harness verified:
- npm run build succeeds → dist/index.html created
- npx vitest run --passWithNoTests exits 0
2026-07-09 10:56:10 +02:00

32 lines
697 B
JSON

{
"name": "clement-saillant-cc",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview --port 4173",
"test": "vitest run",
"e2e": "playwright test"
},
"dependencies": {
"@react-three/drei": "^10",
"@react-three/fiber": "^9",
"react": "^19",
"react-dom": "^19",
"three": "^0.177.0",
"zustand": "^5"
},
"devDependencies": {
"@playwright/test": "^1.53",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.177.0",
"@vitejs/plugin-react": "^4",
"typescript": "^5.8",
"vite": "^7",
"vitest": "^3"
}
}