-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1013 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1013 Bytes
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
{
"name": "fdc-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"launch": "zsh scripts/dev.sh",
"build": "sh scripts/vercel-build.sh",
"db:push": "prisma db push",
"db:seed": "prisma db seed",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@apollo/server": "^5.5.1",
"@as-integrations/next": "^4.1.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"graphql": "^16.14.0",
"graphql-tag": "^2.12.6",
"next": "16.2.6",
"pg": "^8.21.0",
"prisma": "^7.8.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"tsx": "^4.22.3",
"typescript": "^5"
}
}