-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.11 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "retlab",
"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 .",
"db:push": "tsx node_modules/drizzle-kit/bin.cjs push",
"db:generate": "tsx node_modules/drizzle-kit/bin.cjs generate",
"db:populate": "tsx src/lib/server/drizzle/seed.ts"
},
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/js": "^9.39.2",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.49.2",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^22.19.3",
"@types/pg": "^8.16.0",
"@types/sanitize-html": "^2.16.0",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.13.1",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^5.46.0",
"svelte-check": "^4.3.5",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vite": "^7.3.0"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@paralleldrive/cuid2": "^3.3.0",
"@upstash/redis": "^1.37.0",
"@vercel/functions": "^3.4.4",
"bits-ui": "^2.14.4",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"is-network-error": "^1.3.1",
"jose": "^6.1.3",
"ky": "^1.14.1",
"pg": "^8.16.3",
"phosphor-svelte": "^3.0.1",
"sanitize-html": "^2.17.0",
"svelte-attach-sound": "^0.1.5",
"svelte-sonner": "^1.0.7",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2",
"title-case": "^4.3.2",
"tw-animate-css": "^1.4.0",
"ua-parser-js": "^2.0.7",
"url-join": "^5.0.0",
"zod": "^4.2.1"
}
}