forked from keystonejs/keystone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 963 Bytes
/
package.json
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
{
"name": "@keystone-6/example-graphql-ts-gql",
"version": "0.0.6",
"private": true,
"license": "MIT",
"scripts": {
"ts-gql:build": "ts-gql build",
"ts-gql:watch": "ts-gql watch",
"dev": "keystone dev",
"start": "keystone start",
"build": "keystone build",
"postinstall": "keystone postinstall && ts-gql build"
},
"dependencies": {
"@keystone-6/core": "^5.0.0",
"@prisma/client": "^4.14.1",
"@ts-gql/compiler": "^0.15.3",
"@ts-gql/eslint-plugin": "^0.8.4",
"@ts-gql/tag": "^0.7.0",
"eslint": "^8.0.0",
"graphql": "^16.6.0"
},
"devDependencies": {
"prisma": "^4.14.1",
"typescript": "~5.0.0"
},
"ts-gql": {
"schema": "schema.graphql",
"mode": "no-transform"
},
"eslintConfig": {
"plugins": [
"@ts-gql"
],
"rules": {
"@ts-gql/ts-gql": "error"
}
},
"repository": "https://github.com/keystonejs/keystone/tree/main/examples/graphql-ts-gql"
}