-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.94 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
{
"name": "estim8",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "biome lint src && prettier --plugin-search-dir . --check . && eslint .",
"format": "biome format src && prettier --plugin-search-dir . --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"drizzle-kit": "drizzle-kit",
"makemigrations": "drizzle-kit generate",
"migrate": "drizzle-kit migrate"
},
"dependencies": {
"@libsql/client": "0.14.0",
"bits-ui": "^0.22.0",
"clsx": "^2.1.1",
"confetti-js": "^0.0.18",
"drizzle-orm": "^0.39.2",
"jose": "^5.9.6",
"js-confetti": "^0.12.0",
"lucide-svelte": "^0.475.0",
"mode-watcher": "^0.5.1",
"postcss-load-config": "^6.0.1",
"pusher": "^5.2.0",
"pusher-js": "8.4.0",
"svelte-radix": "^2.0.1",
"svelte-sonner": "^0.3.28",
"tailwind-merge": "^3.0.1",
"tailwind-variants": "^0.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@playwright/test": "^1.50.1",
"@sveltejs/adapter-vercel": "^5.6.1",
"@sveltejs/kit": "^2.17.1",
"@sveltejs/vite-plugin-svelte": "5.0.3",
"@tailwindcss/vite": "^4.0.5",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"drizzle-kit": "^0.30.4",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "2.46.1",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"svelte": "5.19.9",
"svelte-check": "^4.1.4",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "4.0.5",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5",
"zod": "^3.24.1"
}
}