-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.94 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.94 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": "oneurl",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "prisma generate && next dev",
"dev:backend": "cd backend && bun run dev",
"dev:all": "concurrently \"bun run dev\" \"bun run dev:backend\"",
"build": "prisma generate && next build",
"build:backend": "cd backend && bun run build",
"start": "next start",
"start:backend": "cd backend && bun run start",
"lint": "eslint"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@lglab/react-qr-code": "^1.4.9",
"@paper-design/shaders-react": "^0.0.68",
"@prisma/adapter-neon": "^7.2.0",
"@prisma/client": "^7.2.0",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.16",
"@types/validator": "^13.15.10",
"@uploadthing/react": "^7.3.3",
"better-auth": "^1.4.9",
"cheerio": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"pg": "^8.16.3",
"prisma": "^7.2.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-dropzone": "^14.3.8",
"react-fast-marquee": "^1.6.5",
"react-icons": "^5.5.0",
"recharts": "^3.6.0",
"tailwind-merge": "^3.4.0",
"uploadthing": "^7.7.4",
"url-metadata": "^5.4.1",
"validator": "^13.15.26",
"zod": "^4.3.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"concurrently": "^9.2.1",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}