-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 735 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 735 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
{
"name": "graphql-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev src/index.ts",
"build": "npm i && npx prisma generate"
},
"prisma": {
"seed": "ts-node-dev prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.3.2",
"prisma": "^4.16.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@graphql-yoga/node": "^3.9.1",
"@pothos/core": "^3.30.0",
"@pothos/plugin-prisma": "^3.52.0",
"@prisma/client": "^4.16.1",
"graphql": "^16.7.1",
"graphql-scalars": "^1.22.2"
}
}