-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.85 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
{
"name": "my-svelte5-project",
"version": "0.0.1",
"private": true,
"scripts": {
"compile": "tsc",
"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",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"studio": "drizzle-kit studio",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:push": "drizzle-kit push --config drizzle.config.ts",
"db:migrate": "tsx ./migrate.ts"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/adapter-vercel": "^6.3.3",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/postcss": "^4.2.1",
"@types/eslint": "^9.6.1",
"@types/node": "^25.5.0",
"@types/node-fetch": "^2.6.13",
"@types/xmldom": "^0.1.34",
"autoprefixer": "^10.4.27",
"drizzle-kit": "^0.31.9",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.15.2",
"globals": "^17.4.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"svelte": "^5.53.12",
"svelte-check": "^4.4.5",
"tailwindcss": "^4.2.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^7.3.1"
},
"type": "module",
"dependencies": {
"@libsql/client": "^0.17.0",
"@node-rs/argon2": "^2.0.2",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@tailwindcss/vite": "^4.2.1",
"@flags-sdk/vercel": "^1.0.3",
"@vercel/analytics": "^2.0.1",
"@vercel/toolbar": "^0.2.2",
"@xmldom/xmldom": "^0.9.8",
"chart.js": "^4.5.1",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.45.1",
"flags": "^4.0.5",
"node-fetch": "^3.3.2"
}
}