-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.39 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
{
"name": "sveltekit-fullstack-starter",
"description": "SvelteKit Fullstack Starter",
"version": "0.0.1",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite dev",
"db:gen": "npx prisma generate",
"db:push": "npx prisma db push",
"build": "vite build",
"preview": "vite preview",
"start": "node ./server.js",
"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"
},
"devDependencies": {
"@hono/valibot-validator": "^0.2.5",
"@melt-ui/pp": "^0.3.2",
"@playwright/test": "^1.45.1",
"@sveltejs/adapter-node": "^5.2.0",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@tailwindcss/forms": "^0.5.7",
"@types/eslint": "^8.56.10",
"@types/nodemailer": "^6.4.15",
"@types/pg": "^8.11.6",
"@types/web-push": "^3.6.3",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.42.0",
"postcss": "^8.4.39",
"postcss-load-config": "^5.1.0",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"prisma": "^5.16.2",
"prisma-kysely": "^1.8.0",
"svelte": "^4.2.18",
"svelte-check": "^3.8.4",
"svelte-meta-tags": "^3.1.2",
"svelte-sequential-preprocessor": "^2.0.1",
"sveltekit-superforms": "^2.16.0",
"tailwindcss": "^3.4.4",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vitest": "^1.6.0"
},
"type": "module",
"dependencies": {
"@formkit/tempo": "^0.0.15",
"@lucia-auth/adapter-postgresql": "^3.1.2",
"@melt-ui/svelte": "^0.75.3",
"@polka/compression": "1.0.0-next.25",
"arctic": "^1.9.1",
"bits-ui": "^0.19.7",
"clsx": "^2.1.1",
"formsnap": "^0.5.1",
"hono": "^4.4.13",
"kysely": "^0.27.4",
"lucia": "^3.2.0",
"lucide-svelte": "^0.350.0",
"mode-watcher": "^0.2.2",
"nodemailer": "^6.9.14",
"oslo": "^1.2.1",
"pg": "^8.12.0",
"polka": "^0.5.2",
"svelte-sonner": "^0.3.25",
"tailwind-merge": "^2.4.0",
"tailwind-variants": "^0.2.1",
"valibot": "0.31.0-rc.7",
"web-push": "^3.6.7"
}
}