-
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) · 941 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 941 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": "4.1.9",
"@pothos/core": "4.12.0",
"@pothos/plugin-prisma": "4.14.2",
"@prisma/client": "7.5.0",
"@prisma/adapter-pg": "7.5.0",
"graphql": "16.13.1",
"graphql-scalars": "1.25.0",
"graphql-yoga": "5.18.1",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "10.1.0",
"pg": "8.20.0"
},
"devDependencies": {
"@types/graphql": "14.5.0",
"@types/node": "25.5.0",
"@types/react": "19.2.14",
"dotenv": "17.3.1",
"prisma": "7.5.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"@types/pg": "8.20.0"
},
"pkg": {
"assets": [
"node_modules/.prisma/client/*.node"
]
}
}