-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 832 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 832 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
{
"name": "graphql-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"codegen": "graphql-codegen --config .graphqlrc.ts",
"postinstall": "pnpm codegen",
"dev": "tsx watch src/server.ts",
"seed": "tsx prisma/seed.ts"
},
"keywords": [],
"author": "Michał Miszczyszyn <michal@mmiszy.pl> (https://typeofweb.com/)",
"license": "MIT",
"devDependencies": {
"@eddeee888/gcg-typescript-resolver-files": "0.5.0",
"@faker-js/faker": "8.0.2",
"@graphql-codegen/cli": "4.0.1",
"graphql": "16.7.1",
"prettier": "3.0.0",
"prisma": "5.0.0",
"tsx": "3.12.7",
"typescript": "5.1.6"
},
"dependencies": {
"@apollo/server": "4.7.5",
"@graphql-tools/load-files": "7.0.0",
"@prisma/client": "5.0.0",
"graphql-scalars": "1.22.2",
"graphql-yoga": "4.0.3"
}
}