This repository was archived by the owner on Jun 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.9 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.9 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
{
"name": "commerspace",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev --host --port 31513",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"vercel:build": "prisma generate && pnpm build",
"db:reset": "prisma db push --force-reset --accept-data-loss && prisma db seed"
},
"devDependencies": {
"@auth/core": "^0.19.0",
"@auth/prisma-adapter": "^1.0.5",
"@auth/sveltekit": "^0.5.0",
"@faker-js/faker": "^8.3.1",
"@floating-ui/dom": "^1.5.3",
"@fontsource-variable/roboto-condensed": "^5.0.1",
"@prisma/client": "^5.5.2",
"@skeletonlabs/skeleton": "^2.5.1",
"@skeletonlabs/tw-plugin": "^0.2.4",
"@sveltejs/adapter-vercel": "^4.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tailwindcss/forms": "^0.5.7",
"@trpc/client": "^10.43.0",
"@trpc/server": "^10.43.0",
"@types/mapbox-gl": "^2.7.19",
"@types/node": "v18.18.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"argon2": "^0.31.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.28.0",
"eslint-plugin-svelte": "^2.30.0",
"iconify-icon": "^1.0.8",
"lucide-svelte": "^0.294.0",
"mapbox-gl": "^3.0.1",
"package": "^1.0.1",
"pg-tsquery": "^8.4.1",
"postcss": "^8.4.24",
"prisma": "^5.5.2",
"superjson": "^2.2.1",
"svelte": "^4.0.5",
"svelte-check": "^3.4.3",
"svelte-maplibre": "^0.6.0",
"tailwindcss": "^3.3.2",
"trpc-sveltekit": "^3.5.22",
"tslib": "^2.4.1",
"tsx": "^3.14.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-tailwind-purgecss": "^0.1.4",
"zod": "^3.22.4"
},
"prisma": {
"schema": "./prisma/schema.prisma",
"seed": "tsx ./prisma/seed.ts"
},
"type": "module",
"packageManager": "pnpm@8.11.0"
}