-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "prisma-binding",
"version": "0.0.0-semantic-release",
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/prisma-labs/prisma-binding.git"
},
"author": "Johannes Schickling <[email protected]>",
"contributors": [
"Kim Brandwijk <[email protected]>",
"Tim Suchanek <[email protected]>",
"Matic Zavadlal <[email protected]>"
],
"bin": {
"prisma-binding": "./dist/bin.js"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/prisma-labs/prisma-binding/issues"
},
"homepage": "https://github.com/prisma-labs/prisma-binding",
"scripts": {
"clean": "rimraf dist",
"prepublish": "npm run build",
"prebuild": "npm-run-all clean",
"build": "tsc -d",
"lint": "tslint --project tsconfig.json {src}/**/*.ts && prettier-check --ignore-path .gitignore src/**/*.ts",
"pretest": "npm-run-all build lint",
"test": "ava"
},
"dependencies": {
"apollo-link": "1.2.13",
"apollo-link-error": "1.1.12",
"apollo-link-ws": "1.0.19",
"cross-fetch": "3.0.4",
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
"graphql-binding": "2.5.2",
"graphql-import": "0.7.1",
"graphql-tools": "4.0.5",
"http-link-dataloader": "^0.1.6",
"jsonwebtoken": "8.5.1",
"subscriptions-transport-ws": "0.9.16",
"yargs": "12.0.5"
},
"devDependencies": {
"@types/graphql": "14.2.3",
"@types/jsonwebtoken": "8.3.4",
"@types/node": "10.14.18",
"ava": "1.4.1",
"husky": "1.3.1",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"prettier-check": "2.0.0",
"pretty-quick": "1.11.1",
"rimraf": "2.7.1",
"semantic-release": "15.13.24",
"ts-node": "7.0.1",
"tslint": "5.20.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.5.3"
}
}