forked from privy-io/create-next-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.79 KB
/
package.json
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
{
"private": true,
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"format": "npx prettier --write \"{__tests__,components,pages,styles}/**/*.{ts,tsx,js,jsx}\"",
"lint": "next lint && npx prettier --check \"{__tests__,components,pages,styles}/**/*.{ts,tsx,js,jsx}\" && npx tsc --noEmit",
"postinstall": "prisma generate"
},
"dependencies": {
"@dnd-kit/react": "^0.0.9",
"@instantdb/admin": "^0.17.21",
"@instantdb/react": "^0.17.21",
"@neondatabase/serverless": "^0.10.4",
"@preact/signals-react": "^3.0.1",
"@prisma/adapter-neon": "^6.4.1",
"@prisma/client": "^6.4.1",
"@privy-io/react-auth": "2.4.3",
"@privy-io/server-auth": "1.18.7",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@solana/web3.js": "^1.98.0",
"@tailwindcss/forms": "^0.5.3",
"@types/crypto-js": "^4.2.2",
"@types/dompurify": "^3.2.0",
"@upstash/redis": "^1.34.4",
"@vercel/blob": "^0.27.1",
"@vercel/og": "^0.6.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"dompurify": "^3.2.4",
"drizzle-kit": "^0.30.4",
"drizzle-orm": "^0.39.3",
"framer-motion": "^12.4.7",
"helius-sdk": "^1.4.2",
"jsdom": "^26.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.475.0",
"next": "latest",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@tsconfig/next": "^2.0.0",
"@tsconfig/node18": "^18.2.0",
"@tsconfig/strictest": "^2.0.1",
"@types/lodash": "^4.17.15",
"@types/node": "^18",
"@types/react": "18.2.0",
"autoprefixer": "^10.4.7",
"dotenv-cli": "^6.0.0",
"eslint": "^8.23.0",
"eslint-config-next": "12.2.5",
"postcss": "^8.4.14",
"prisma": "^6.4.1",
"tailwindcss": "^3.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]+sha512.2dc70be5fce9f66756d25b00a888f3ca66f86b502b76750e72ba54cec89da767b938c54124595e26f868825688e0fe3552c26c76a330673343057acadd5cfcf2"
}