ava/package.json

34 lines
932 B
JSON
Raw Normal View History

2024-06-23 14:07:56 -07:00
{
2024-06-24 17:00:52 -07:00
"name": "ava",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
2024-07-09 21:54:17 -07:00
"prisma": "^5.16.2",
2024-06-24 17:00:52 -07:00
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^5.0.3"
},
"type": "module",
"dependencies": {
2024-07-09 21:54:17 -07:00
"@fontsource-variable/inter": "^5.0.18",
2024-07-10 04:29:44 -07:00
"@fontsource-variable/noto-sans-mono": "^5.0.20",
2024-07-09 21:54:17 -07:00
"@prisma/client": "5.16.2"
2024-06-24 17:00:52 -07:00
}
2024-06-23 14:07:56 -07:00
}