-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 943 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
{
"name": "gql-tg",
"version": "1.1.1",
"description": "Automatically generate TS type definitions for the GQL resolvers.",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"typegen": "./build/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./build && tsc",
"package:up": "npm run build && npm publish",
"start:build": "tsc -w",
"start:exec": "nodemon -e js,graphql ./build/index.js",
"start": "concurrently npm:start:*"
},
"keywords": [
"graphql",
"typescript",
"type definitions",
"nodejs",
"cli"
],
"repository": "https://github.com/ai-zubair/gql-tg",
"homepage": "https://github.com/ai-zubair/gql-tg#readme",
"author": "Zubair Bashir",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.11.2",
"concurrently": "^5.3.0",
"nodemon": "^2.0.4",
"typescript": "^4.0.3"
}
}