-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 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
{
"name": "@onlook/next-template",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": "^20.0.0"
},
"scripts": {
"dev": "node scripts/get-commit-hash.js && next dev",
"build": "node scripts/get-commit-hash.js && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@farcaster/auth-kit": "^0.1.4",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@neynar/nodejs-sdk": "^2.13.1",
"@radix-ui/react-slot": "^1.1.0",
"@types/mongodb": "^4.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"ethers": "^5.7.2",
"lucide-react": "^0.438.0",
"mongodb": "^6.13.0",
"mongoose": "^8.10.1",
"next": "14.2.35",
"next-auth": "^4.24.11",
"node-cache": "^5.1.2",
"node-fetch": "^2.7.0",
"postcss": "^8.5.2",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.5.2",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5",
"zod": "^3.24.2"
},
"devDependencies": {
"eslint": "^8",
"eslint-config-next": "^15.1.6",
"prettier": "^3.3.3"
}
}