-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.91 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.91 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
{
"name": "web",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev --open",
"build": "svelte-kit sync && vite build",
"preview": "vite preview",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint:check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"lint:markup": "markuplint \"**\"",
"lint:js": "eslint .",
"lint:cspell": "cspell \"**\"",
"lint:prettier": "prettier . --check --ignore-path=../../.prettierignore",
"lint": "run-p lint:*",
"test:watch": "bun test --watch",
"test": "bun test",
"format:js": "eslint --fix .",
"format:prettier": "prettier . --write --ignore-path=../../.prettierignore",
"format": "run-p format:*"
},
"dependencies": {
"@repo/shared": "workspace:*",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.78.0",
"api": "workspace:*",
"camelcase-keys": "^10.0.0",
"cdate": "^0.0.7",
"snakecase-keys": "^9.0.1",
"valibot": "^1.2.0"
},
"devDependencies": {
"@internationalized/date": "^3.10.0",
"@lucide/svelte": "^0.552.0",
"@markuplint/svelte-parser": "^4.7.11",
"@markuplint/svelte-spec": "^4.5.21",
"@repo/eslint-config": "workspace:*",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.48.4",
"@sveltejs/vite-plugin-svelte": "6.2.1",
"@tailwindcss/vite": "^4.1.16",
"bits-ui": "^2.14.2",
"clsx": "^2.1.1",
"formsnap": "^2.0.1",
"mode-watcher": "^1.1.0",
"npm-run-all2": "^8.0.4",
"svelte": "^5.43.2",
"svelte-check": "^4.3.3",
"svelte-sonner": "^1.0.5",
"sveltekit-superforms": "^2.28.0",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^3.1.1",
"tailwindcss": "^4.1.16",
"tslib": "^2.8.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.1.12"
},
"engines": {
"bun": "^1.2.20"
}
}