-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 962 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "svelte-starter",
"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"
},
"devDependencies": {
"@sveltejs/adapter-auto": "6.0.1",
"@sveltejs/kit": "2.21.1",
"@sveltejs/vite-plugin-svelte": "5.0.3",
"@tailwindcss/typography": "0.5.16",
"autoprefixer": "10.4.21",
"postcss": "8.5.3",
"prisma": "6.8.2",
"svelte": "5.30.2",
"svelte-check": "4.2.1",
"tailwindcss": "3.4.17",
"tslib": "2.8.1",
"tsx": "4.19.4",
"typescript": "5.8.2",
"vite": "6.3.5"
},
"type": "module",
"dependencies": {
"@prisma/client": "6.8.2",
"@prisma/extension-accelerate": "1.3.0",
"date-fns": "4.1.0",
"openflights-cached": "1.3.15",
"zod": "3.24.4"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}