-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
51 lines (51 loc) · 1.33 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
{
"packageManager": "[email protected]",
"name": "oghunt",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"upload-to-r2": "tsx scripts/upload-to-r2.ts",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:generate": "prisma generate",
"format": "prettier --write .",
"check:format": "prettier --check \"**/*.{ts,js,mjs}\""
},
"dependencies": {
"@next/third-parties": "^14.2.6",
"@prisma/client": "5.18.0",
"@vercel/analytics": "^1.3.1",
"d3": "^7.9.0",
"date-fns": "^3.6.0",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.4",
"@types/d3": "^7.4.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv": "^16.4.5",
"eslint": "^9.9.1",
"eslint-config-next": "15.0.0-canary.128",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"prisma": "5.18.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.17.0",
"typescript": "^5",
"typescript-eslint": "^8.2.0"
}
}