-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "soralia-village",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"db:push": "prisma db push",
"db:seed": "npx tsx prisma/seed.ts",
"db:studio": "prisma studio",
"prepare": "husky",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"devDependencies": {
"@better-auth/cli": "^1.4.21",
"@prisma/client": "^5.22.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/leaflet": "^1.9.21",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"autoprefixer": "^10.4.27",
"better-auth": "^1.5.6",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"prisma": "5.22.0",
"shadcn": "^4.1.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1019.0",
"@aws-sdk/s3-request-presigner": "^3.1019.0",
"@better-auth/passkey": "^1.5.6",
"@better-auth/prisma-adapter": "^1.5.6",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-tooltip": "^1.2.8",
"@supabase/supabase-js": "^2.100.1",
"@tanstack/react-query": "^5",
"@tiptap/core": "^3.21.0",
"@tiptap/extension-code-block-lowlight": "^3.21.0",
"@tiptap/extension-color": "^3.21.0",
"@tiptap/extension-font-size": "3.0.0-next.3",
"@tiptap/extension-highlight": "^3.21.0",
"@tiptap/extension-image": "^3.21.0",
"@tiptap/extension-placeholder": "^3.21.0",
"@tiptap/extension-text-align": "^3.21.0",
"@tiptap/extension-text-style": "^3.21.0",
"@tiptap/extension-underline": "^3.21.0",
"@tiptap/pm": "^3.21.0",
"@tiptap/react": "^3.21.0",
"@tiptap/starter-kit": "^3.21.0",
"@trpc/client": "^11.16.0",
"@trpc/next": "^11.16.0",
"@trpc/react-query": "^11.16.0",
"@trpc/server": "^11.16.0",
"@types/dompurify": "^3.2.0",
"dompurify": "^3.3.3",
"highlight.js": "^11.11.1",
"i18next": "^25.10.10",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^3.0.2",
"leaflet": "^1.9.4",
"lowlight": "^3.3.0",
"next": "^16.2.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.72.0",
"react-i18next": "^17.0.0",
"react-leaflet": "^5.0.0",
"react-rnd": "^10.5.3",
"sonner": "^2.0.7",
"superjson": "^2.2.6",
"tailwindcss": "^3.4.19",
"tiptap-extension-resizable-image": "^2.1.0",
"type-fest": "^5.5.0",
"uuid": "^13.0.0",
"zod": "^3.25.76",
"zustand": "^5.0.12"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}