-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 915 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
{
"name": "t-graphql",
"version": "0.0.14",
"author": "Jan Kuča",
"description": "typed GraphQL - end-to-end type-safe GraphQL for TypeScript. Think tRPC, but GraphQL",
"keywords": [
"graphql",
"trpc",
"tgraphql",
"typescript",
"typesafe",
"api",
"schema",
"code-first"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jankuca/tgraphql.git"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"example": "ts-node examples/client",
"prepare": "npm run build"
},
"dependencies": {
"assert-never": "^1.2.1"
},
"devDependencies": {
"@types/node": "18.11.17",
"eslint": "8.30.0",
"eslint-config-next": "13.1.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "4.9.4"
}
}