forked from Torwent/wasp-webapp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.07 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
64
65
66
67
68
69
70
{
"name": "wasp-webapp",
"private": true,
"version": "2.0.0",
"type": "module",
"scripts": {
"gentypes": "bun run src/lib/types/update.ts",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"start": "node build"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@skeletonlabs/skeleton": "^4.15.2",
"@sveltejs/kit": "^2.69.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.20",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.4.2",
"@types/file-saver": "^2.0.7",
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-emoji": "^3.0.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.20.0",
"globals": "^17.7.0",
"prettier": "^3.9.4",
"prettier-plugin-svelte": "^4.1.1",
"prettier-plugin-tailwindcss": "^0.8.0",
"svelte": "^5.56.4",
"svelte-check": "^4.7.1",
"sveltekit-superforms": "^2.30.2",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vite": "^8.1.3",
"zod": "^4.4.3"
},
"dependencies": {
"@lucide/svelte": "^1.23.0",
"@mdit/plugin-img-lazyload": "^0.23.2",
"@shikijs/markdown-it": "^4.3.1",
"@skeletonlabs/skeleton-svelte": "^4.15.2",
"@stripe/connect-js": "^3.4.6",
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.110.0",
"@sveltejs/adapter-node": "^5.5.7",
"@tailwindcss/vite": "^4.3.2",
"file-saver": "^2.0.5",
"flexsearch": "^0.8.212",
"gray-matter": "^4.0.3",
"isomorphic-dompurify": "^3.18.0",
"markdown-it": "^14.3.0",
"markdown-it-emoji": "^3.0.0",
"mdsvex": "^0.12.7",
"remove-markdown": "^0.6.4",
"sharp": "^0.35.3",
"shiki": "^4.3.1",
"stripe": "^22.3.0",
"svelte-persisted-store": "^0.12.0"
}
}