-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.41 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
{
"name": "wasp-webapp",
"version": "3.0.0",
"private": true,
"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": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"gentypes": "supabase gen types typescript --db-url postgres://postgres:PASSWORD@IP:PORT/postgres --schema info,profiles,public,scripts,storage > src/lib/types/supabase.ts",
"stripe": "stripe listen --forward-to http://localhost:5173/api/stripe/webhooks --forward-connect-to http://localhost:5173/api/stripe/webhooks"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@skeletonlabs/skeleton": "2.10.2",
"@skeletonlabs/tw-plugin": "0.4.0",
"@sveltejs/adapter-node": "^5.2.6",
"@sveltejs/kit": "^2.7.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.14",
"@types/eslint": "^9.6.1",
"@types/file-saver": "^2.0.7",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-emoji": "^3.0.1",
"@types/node": "22.4.1",
"autoprefixer": "10.4.20",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.44.1",
"globals": "^15.11.0",
"mdsvex": "^0.12.3",
"postcss": "8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"supabase": "^1.204.3",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"sveltekit-superforms": "^2.19.1",
"tailwindcss": "3.4.10",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
"typescript-eslint": "8.1.0",
"vite": "^5.4.8",
"vite-plugin-tailwind-purgecss": "0.3.3",
"vitest": "^2.1.2",
"zod": "^3.23.8"
},
"type": "module",
"dependencies": {
"@floating-ui/dom": "1.6.10",
"@mdit/plugin-img-lazyload": "^0.13.1",
"@stripe/connect-js": "^3.3.15",
"@supabase/ssr": "^0.4.1",
"@supabase/supabase-js": "^2.45.4",
"file-saver": "^2.0.5",
"flexsearch": "^0.7.43",
"highlight.js": "11.10.0",
"jszip": "^3.10.1",
"lucide-svelte": "^0.428.0",
"markdown-it": "^14.1.0",
"markdown-it-emoji": "^3.0.0",
"sharp": "^0.33.5",
"shiki": "^1.22.0",
"stripe": "^16.12.0",
"svelte-media-queries": "^1.6.2",
"svelte-persisted-store": "^0.11.0"
}
}