-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 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
{
"name": "gitify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prisma:generate": "prisma generate",
"build": "npm run prisma:generate && next build",
"start": "next start",
"lint": "next lint",
"seed-challenges": "npx ts-node scripts/seed-challenges.ts",
"test": "jest"
},
"dependencies": {
"@auth/prisma-adapter": "^2.8.0",
"@octokit/rest": "^20.1.2",
"@prisma/client": "^6.5.0",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@react-three/drei": "^10.0.0",
"@react-three/fiber": "^9.0.4",
"clsx": "^2.1.1",
"framer-motion": "^12.4.7",
"lucide-react": "^0.475.0",
"next": "^15.2.4",
"next-auth": "^4.24.11",
"prisma": "^6.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"swr": "^2.3.3",
"tailwind-merge": "^3.2.0",
"three": "^0.173.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.173.0",
"cross-env": "^7.0.3",
"eslint": "^9",
"eslint-config-next": "15.1.7",
"jest": "^29.7.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.3.2",
"typescript": "^5"
}
}