-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 942 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 942 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
42
43
{
"name": "hello-next",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "MIT",
"author": "",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@apollo/client": "3.13.8",
"@pothos/core": "4.7.0",
"@pothos/plugin-prisma": "4.9.1",
"@prisma/client": "7.0.0",
"@prisma/adapter-pg": "7.0.0",
"graphql": "16.11.0",
"graphql-scalars": "1.24.2",
"graphql-yoga": "5.14.0",
"next": "15.3.6",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-markdown": "10.1.0",
"pg": "^8.16.3"
},
"devDependencies": {
"@types/graphql": "14.5.0",
"@types/node": "22.19.0",
"@types/react": "19.1.8",
"dotenv": "^17.2.1",
"prisma": "7.0.0",
"tsx": "4.20.6",
"typescript": "5.8.2",
"@types/pg": "^8.15.6"
},
"pkg": {
"assets": [
"node_modules/.prisma/client/*.node"
]
}
}