-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 KB
/
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
{
"name": "graphql-coverage",
"version": "0.0.4",
"description": "Show which resolvers are triggered by your GraphQL queries",
"main": "index.js",
"bin": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon -e ts --exec 'ts-node src/index.ts'",
"build": "tsc && cp -R src/static dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/APIs-guru/graphql-coverage.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/APIs-guru/graphql-coverage/issues"
},
"homepage": "https://github.com/APIs-guru/graphql-coverage#readme",
"dependencies": {
"chalk": "2.1.0",
"express": "4.16.4",
"express-graphql": "github:apis-guru/express-graphql#applyFn_dist",
"graphql": "0.11.7",
"node-fetch": "2.3.0"
},
"devDependencies": {
"@types/chalk": "0.4.31",
"@types/express": "4.16.1",
"@types/graphql": "14.2.0",
"@types/node-fetch": "2.3.1",
"nodemon": "1.18.11",
"ts-node": "8.0.3",
"typescript": "3.4.3"
}
}