-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.15 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.15 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
{
"name": "snap-sort",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"dev-network": "vite dev --host",
"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:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push --config=drizzle-dev.config.ts",
"db:migrate:dev": "drizzle-kit migrate --config=drizzle-dev.config.ts",
"db:migrate:prod": "drizzle-kit migrate --config=drizzle-prod.config.ts",
"db:generate:dev": "drizzle-kit generate --config=drizzle-dev.config.ts",
"db:generate:prod": "drizzle-kit generate --config=drizzle-prod.config.ts",
"start": "drizzle-kit migrate --config=drizzle-prod.config.ts && node --env-file=.env.production build"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.33.0",
"@iconify/json": "^2.2.376",
"@sveltejs/adapter-node": "^5.3.1",
"@sveltejs/kit": "^2.35.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.1.12",
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/luxon": "^3.7.1",
"@types/node": "^20",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.11.0",
"globals": "^16.3.0",
"npm-check": "^6.0.1",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"svelte": "^5.38.2",
"svelte-check": "^4.3.1",
"tailwindcss": "^4.1.12",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"unplugin-icons": "^22.2.0",
"vite": "^6.2.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"dependencies": {
"@libsql/client": "^0.15.11",
"bcrypt": "^6.0.0",
"dotenv": "^17.2.1",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.40.0",
"jsonwebtoken": "^9.0.2",
"luxon": "^3.7.1",
"sharp": "^0.34.3",
"zod": "^3.24.3"
}
}