-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 KB
/
package.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "reefscapenchickens",
"private": true,
"version": "0.0.1",
"type": "module",
"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",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"db:load": "bun prisma migrate dev && bun prisma db seed",
"db:view": "bun prisma studio",
"prisma": "bun prisma/run-prisma.ts"
},
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@faker-js/faker": "^8.4.1",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.20.2",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"autoprefixer": "^10.4.21",
"bits-ui": "^1.3.13",
"clsx": "^2.1.1",
"eslint": "^9.23.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.15.0",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"prisma": "^6.5.0",
"tailwind-merge": "^3.0.2",
"tailwind-variants": "^0.3.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0",
"vite": "^5.4.15"
},
"dependencies": {
"@prisma/adapter-pg": "^6.5.0",
"@prisma/client": "^6.5.0",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-popover": "^1.1.6",
"@tanstack/table-core": "^8.21.2",
"@types/node": "^22.13.13",
"add": "^2.0.6",
"class-variance-authority": "^0.7.1",
"cmdk": "1.0.0",
"cmdk-sv": "^0.0.18",
"dialog": "^0.3.1",
"echarts": "^5.6.0",
"echarts-stat": "^1.2.0",
"lucide-react": "^0.475.0",
"lucide-svelte": "^0.477.0",
"shadcn-svelte": "^1.0.0-next.9",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"svd-js": "^1.1.1",
"svelte-gestures": "^5.1.3",
"tailwindcss-color-mix": "^0.0.9"
},
"prisma": {
"seed": "bun ./prisma/seed.ts"
}
}