-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.07 KB
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
44
45
{
"name": "grats-example-migration",
"version": "0.0.0",
"description": "Example server showcasing an incremental migration from Pothos to Grats",
"type": "module",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/server.js",
"schema": "grats && tsc && node dist/schemas/mergedSchema.js",
"grats": "grats",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/captbaritone/grats.git"
},
"keywords": [
"graphql",
"grats",
"yoga",
"javascript",
"typescript",
"subscriptions",
"migration",
"pothos"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/captbaritone/grats/issues"
},
"homepage": "https://github.com/captbaritone/grats#readme",
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@graphql-tools/schema": "^10.0.3",
"@pothos/core": "^3.41.1",
"graphql": "17.0.0-alpha.11",
"graphql-yoga": "^5.0.0",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/node": "^20.8.10",
"grats": "workspace:*"
}
}