-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.33 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
43
44
45
46
47
48
{
"name": "grandmaster-fantasy",
"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",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"db:push": "prisma db push",
"deploy": "npm run build && gh-pages -d build"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/node-cron": "^3.0.11",
"autoprefixer": "^10.4.16",
"gh-pages": "^6.3.0",
"postcss": "^8.4.32",
"prisma": "^5.7.1",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5.0.0",
"vite": "^5.0.3"
},
"dependencies": {
"@prisma/client": "^5.7.1",
"@types/canvas-confetti": "^1.9.0",
"bits-ui": "^0.21.0",
"canvas-confetti": "^1.9.4",
"clsx": "^2.1.0",
"node-cron": "^3.0.3",
"tailwind-merge": "^2.2.0",
"tailwind-variants": "^0.1.20"
},
"type": "module"
}