-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.5 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.5 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
{
"name": "adatools",
"version": "0.1.0",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SLcode777/AdaTools.git"
},
"homepage": "https://github.com/SLcode777/AdaTools#readme",
"bugs": {
"url": "https://github.com/SLcode777/AdaTools/issues"
},
"scripts": {
"dev": "doppler run -- next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"check": "pnpm lint && pnpm typecheck && pnpm build",
"db:migrate": "doppler run -- prisma migrate dev",
"db:push": "doppler run -- prisma db push",
"db:generate": "doppler run -- prisma generate",
"db:studio": "doppler run -- prisma studio"
},
"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",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"@radix-ui/react-switch": "^1.2.6",
"@react-email/components": "^1.0.2",
"@tanstack/react-query": "^5.90.12",
"@trpc/client": "^11.8.0",
"@trpc/react-query": "^11.8.0",
"@trpc/server": "^11.8.0",
"@trpc/tanstack-react-query": "^11.8.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/analytics": "^1.6.1",
"better-auth": "^1.4.7",
"cheerio": "^1.1.2",
"chroma-js": "^3.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"deepl-node": "^1.24.0",
"domhandler": "^5.0.3",
"dotenv": "^17.2.3",
"lucide-react": "^0.562.0",
"next": "16.1.0",
"next-themes": "^0.4.6",
"node-vibrant": "^4.0.3",
"open-graph-scraper": "^6.11.0",
"pg": "^8.16.3",
"postcss": "^8.5.6",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-email": "^5.1.0",
"react-syntax-highlighter": "^16.1.0",
"remove.bg": "^1.3.0",
"resend": "^6.6.0",
"shadcn": "^3.6.2",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"superjson": "^2.2.6",
"tailwind-merge": "^3.4.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@react-email/preview-server": "5.1.0",
"@tailwindcss/postcss": "^4",
"@types/chroma-js": "^3.1.2",
"@types/node": "^20",
"@types/open-graph-scraper": "^5.2.3",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.0",
"prisma": "^7.2.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}