mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
- Updated @astrojs/cloudflare from ^12.5.1 to ^12.5.3 - Updated @astrojs/node from ^9.2.1 to ^9.2.2 - Updated @astrojs/react from ^4.2.5 to ^4.3.0 - Updated @prisma/client from ^6.7.0 to ^6.8.2 - Updated @radix-ui/react-dialog from ^1.1.13 to ^1.1.14 - Updated @radix-ui/react-dropdown-menu from ^2.1.14 to ^2.1.15 - Updated @radix-ui/react-form from ^0.1.6 to ^0.1.7 - Updated @radix-ui/react-select from ^2.2.4 to ^2.2.5 - Updated @radix-ui/react-toast from ^1.2.13 to ^1.2.14 - Updated @types/react from ^19.1.2 to ^19.1.5 - Updated @types/react-dom from ^19.1.2 to ^19.1.5 - Updated astro from ^5.7.5 to ^5.8.0 - Updated @types/node from ^20.11.0 to ^22.15.21 - Updated @vitejs/plugin-react from ^4.4.1 to ^4.5.0 - Updated @vitest/coverage-v8 from ^3.1.3 to ^3.1.4 - Updated prisma from ^6.7.0 to ^6.8.2 - Updated supertest from ^7.1.0 to ^7.1.1 - Updated vitest from ^3.1.2 to ^3.1.4 - Updated wrangler from ^4.13.1 to ^4.16.1
63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "finance",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"format": "biome format --write .",
|
|
"lint": "biome lint .",
|
|
"check": "biome check --write .",
|
|
"db:generate": "prisma generate",
|
|
"db:migrate": "prisma migrate dev",
|
|
"db:push": "prisma db push",
|
|
"db:seed": "node prisma/seed.js",
|
|
"db:studio": "prisma studio",
|
|
"prepare": "husky"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/cloudflare": "^12.5.3",
|
|
"@astrojs/node": "^9.2.2",
|
|
"@astrojs/react": "^4.3.0",
|
|
"@fortawesome/fontawesome-free": "^6.7.2",
|
|
"@nanostores/react": "^1.0.0",
|
|
"@prisma/client": "^6.8.2",
|
|
"@radix-ui/react-dialog": "^1.1.14",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
"@radix-ui/react-form": "^0.1.7",
|
|
"@radix-ui/react-select": "^2.2.5",
|
|
"@radix-ui/react-toast": "^1.2.14",
|
|
"@types/react": "^19.1.5",
|
|
"@types/react-dom": "^19.1.5",
|
|
"astro": "^5.8.0",
|
|
"nanostores": "^1.0.1",
|
|
"react": "^19.1.0",
|
|
"react-dom": "^19.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@testing-library/dom": "^10.4.0",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@types/node": "^22.15.21",
|
|
"@types/supertest": "^6.0.3",
|
|
"@vitejs/plugin-react": "^4.5.0",
|
|
"@vitest/coverage-v8": "^3.1.4",
|
|
"husky": "^9.1.7",
|
|
"jsdom": "^26.1.0",
|
|
"prisma": "^6.8.2",
|
|
"supertest": "^7.1.1",
|
|
"ts-node": "^10.9.2",
|
|
"vitest": "^3.1.4",
|
|
"wrangler": "^4.16.1"
|
|
},
|
|
"prisma": {
|
|
"seed": "node prisma/seed.js"
|
|
}
|
|
}
|