-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 3.25 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "kit-stack",
"version": "1.0.0",
"type": "module",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "bun db:generate && bun vite:dev",
"build": "bun lang:build && bun db:generate && bun vite:build",
"vite:dev": "bun vite dev",
"vite:build": "bun vite build",
"db:generate": "bun drizzle-kit generate:pg",
"db:push": "bun drizzle-kit push:pg",
"db:pull": "bun drizzle-kit introspect:pg",
"db:studio": "bun drizzle-kit studio",
"lang:studio": "bun x @inlang/cli open editor",
"lang:build": "paraglide-js compile --project ./project.inlang",
"preview": "bun vite preview",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"env:sync": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"vercel:build": "~/.bun/bin/bun env:sync && ~/.bun/bin/bun db:push && ~/.bun/bin/bun vite:build",
"storybook": "STORYBOOK=true storybook dev -p 6006 -s ../static",
"storybook:build": "STORYBOOK=true storybook build -s ../static",
"storybook:serve": "bun x serve storybook-static",
"deps:update": "bun x npm-check-updates -ui",
"clean": "rm -rf node_modules/ bun.lockb",
"postinstall": "paraglide-js compile --project ./project.inlang"
},
"devDependencies": {
"@inlang/paraglide-js": "1.7.0",
"@inlang/paraglide-js-adapter-vite": "^1.2.40",
"@storybook/addon-actions": "^8.0.9",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^8.0.9",
"@storybook/svelte": "^8.0.9",
"@storybook/sveltekit": "^8.0.9",
"@storybook/testing-library": "^0.2.2",
"@stripe/stripe-js": "^3.3.0",
"@sveltejs/adapter-vercel": "^5.3.0",
"@sveltejs/kit": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.20.17",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-svelte": "^2.38.0",
"pg": "^8.11.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.3",
"prettier-plugin-tailwindcss": "^0.5.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sk-seo": "^0.2.2",
"storybook": "^8.0.9",
"stripe": "^15.3.0",
"svelte": "^4.2.15",
"svelte-check": "^3.6.9",
"svelte-hero-icons": "^5.1.0",
"svelte-stripe": "^1.1.7",
"tailwindcss": "^3.4.3",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"vite": "^5.2.10"
},
"dependencies": {
"@felte/reporter-svelte": "^1.1.11",
"@felte/validator-zod": "^1.0.17",
"@fontsource/montserrat": "^5.0.18",
"@fontsource/montserrat-alternates": "^5.0.13",
"@supabase/auth-helpers-sveltekit": "^0.12.0",
"@supabase/supabase-js": "2.39.3",
"@trpc/client": "10.45.2",
"@trpc/server": "10.45.2",
"daisyui": "^4.10.2",
"drizzle-orm": "^0.30.9",
"felte": "^1.2.14",
"postgres": "^3.4.4",
"superjson": "^2.2.1",
"trpc-sveltekit": "^3.6.1",
"zod": "^3.23.3"
}
}