-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.06 KB
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
40
41
42
{
"name": "sveltekit",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint ."
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"devDependencies": {
"@eslint/compat": "1.2.9",
"@eslint/js": "9.27.0",
"@sveltejs/adapter-auto": "6.0.1",
"@sveltejs/kit": "2.21.1",
"@sveltejs/vite-plugin-svelte": "5.0.3",
"eslint": "9.27.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-svelte": "3.8.1",
"globals": "16.1.0",
"prettier": "3.5.3",
"prettier-plugin-svelte": "3.4.0",
"prisma": "6.8.2",
"svelte": "5.30.2",
"svelte-check": "4.2.1",
"tsx": "4.19.4",
"typescript": "5.8.3",
"typescript-eslint": "8.32.1",
"vite": "6.3.5"
},
"dependencies": {
"@prisma/client": "6.8.2"
}
}