Files
gsd-framework/package.json
T
tiennm99 f917177215 chore(01-01): configure Vitest test infrastructure
- Add vitest.config.js with jsdom environment and global test APIs
- Install vitest and jsdom as dev dependencies
- Add test scripts (test, test:run) to package.json

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 02:39:49 +00:00

21 lines
438 B
JSON

{
"name": "expense-splitter",
"version": "1.0.0",
"description": "A web app for splitting restaurant bills fairly among friends",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run"
},
"devDependencies": {
"jsdom": "^28.1.0",
"vitest": "^4.0.18"
},
"dependencies": {
"@preact/signals": "^2.8.2"
}
}