mirror of
https://github.com/tiennm99/gsd-framework.git
synced 2026-05-14 08:58:15 +00:00
f917177215
- 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>
21 lines
438 B
JSON
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"
|
|
}
|
|
}
|