-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.64 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
{
"name": "promptly",
"version": "0.0.2",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:e2e && 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 --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test:e2e": "playwright test",
"test:unit": "vitest -u",
"migration:generate": "drizzle-kit generate:pg",
"migration:push": "drizzle-kit push:pg",
"migration:pull": "drizzle-kit introspect:pg",
"migration:drop": "drizzle-kit drop",
"migration:check": "drizzle-kit check:pg",
"serve:stripe-webhook": "pnpx supabase functions serve --no-verify-jwt stripe-webhook --env-file ./supabase/functions/.env",
"stripe:listen": "stripe listen --forward-to localhost:54321/functions/v1/stripe-webhook"
},
"devDependencies": {
"@bobbymannino/svelte-progress": "^2.3.0",
"@playwright/test": "^1.39.0",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.26.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/dompurify": "^3.0.4",
"@types/jsdom": "^21.1.4",
"@types/nodemailer": "^6.4.13",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@zerodevx/svelte-toast": "^0.9.5",
"autoprefixer": "^10.4.16",
"drizzle-kit": "^0.19.13",
"eslint": "^8.52.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte": "^2.34.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.31",
"postcss-load-config": "^4.0.1",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"supabase": "^1.106.1",
"svelte": "^4.2.2",
"svelte-check": "^3.5.2",
"sveltekit-flash-message": "^2.2.1",
"sveltekit-superforms": "^1.8.0",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.32.4",
"zod": "^3.22.4"
},
"type": "module",
"dependencies": {
"@fontsource/poppins": "^5.0.8",
"@supabase/auth-helpers-sveltekit": "^0.10.3",
"@supabase/supabase-js": "^2.38.2",
"@tabler/icons-svelte": "^2.39.0",
"@vercel/analytics": "^1.1.1",
"bits-ui": "^0.0.27",
"clsx": "^2.0.0",
"dompurify": "^3.0.6",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.28.6",
"drizzle-zod": "^0.5.1",
"lucide-svelte": "^0.268.0",
"nodemailer": "^6.9.6",
"openai": "^4.12.4",
"postcss-preset-env": "^9.2.0",
"postgres": "^3.4.0",
"stripe": "^13.11.0",
"tailwind-merge": "^1.14.0",
"tailwind-variants": "^0.1.14",
"tailwindcss-animate": "^1.0.7"
}
}