-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.23 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.23 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
71
{
"name": "svelte-launch",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "bunx --bun vite dev",
"build": "vite build",
"preview": "bunx --bun 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",
"db:generate": "bunx prisma generate",
"db:migrate": "prisma migrate dev",
"outdated": "bunx npm-check-updates --format group --interactive"
},
"devDependencies": {
"@iconify-json/line-md": "^1.1.39",
"@playwright/test": "^1.46.1",
"@sveltejs/adapter-auto": "^3.2.4",
"@sveltejs/kit": "^2.5.24",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/eslint": "^9.6.0",
"@types/set-cookie-parser": "^2.4.10",
"autoprefixer": "^10.4.20",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"globals": "^15.9.0",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.6",
"prisma": "^5.18.0",
"svelte": "^5.0.0-next.228",
"svelte-check": "^3.8.5",
"tailwindcss": "^3.4.10",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"unplugin-icons": "^0.19.2",
"vite": "^5.4.2",
"vitest": "^2.0.5"
},
"type": "module",
"dependencies": {
"@felte/validator-zod": "^1.0.17",
"@libsql/kysely-libsql": "^0.4.1",
"@lucia-auth/adapter-prisma": "^4.0.1",
"@tanstack/svelte-query": "^5.51.24",
"@trpc/client": "^11.0.0-rc.396",
"@trpc/server": "^11.0.0-rc.396",
"bits-ui": "^0.21.13",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"felte": "^1.2.14",
"kysely": "^0.27.4",
"kysely-bun-worker": "^0.6.3",
"lucia": "^3.2.0",
"prisma-kysely": "^1.8.0",
"set-cookie-parser": "^2.7.0",
"svelte-radix": "^1.1.1",
"svelte-sonner": "^0.3.27",
"tailwind-merge": "^2.5.2",
"tailwind-variants": "^0.2.1",
"zod": "^3.23.8"
}
}