-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "fanout-graphql-tools",
"version": "0.2.0",
"description": "",
"main": "dist/src",
"types": "dist/src/index.d.ts",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/fanout/fanout-graphql-tools.git"
},
"license": "ISC",
"prettier": {
"trailingComma": "all"
},
"scripts": {
"build": "npm run tsc",
"check": "npm run prettier:check && npm run tsc:check && npm run tslint",
"check-and-build": "npm run check && npm run build",
"prettier": "prettier '{package.json,tsconfig.json,src/**/*.{ts,tsx}}' --write",
"prettier:check": "prettier '{package.json,tsconfig.json,src/**/*.{ts,tsx}}' --check",
"prepublishOnly": "npm run check-and-build",
"preversion": "npm run check-and-build",
"start": "ts-node src/FanoutGraphqlExpressServer",
"test": "ts-node src/test/unit && npm run check",
"tsc": "tsc -p tsconfig.json",
"tsc:check": "npm run tsc -- --noEmit",
"tslint": "tslint -c tslint.json 'src/**/*.ts'"
},
"dependencies": {
"@types/core-js": "^2.5.0",
"@types/graphql": "^14.2.0",
"@types/node": "latest",
"@types/node-fetch": "^2.3.2",
"@types/uuid": "^3.4.4",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link-http": "^1.5.14",
"apollo-link-ws": "^1.0.17",
"apollo-server": "^2.4.8",
"aws-serverless-express": "^3.3.6",
"body-parser": "^1.18.3",
"core-js": "^3.1.3",
"cross-fetch": "^3.0.2",
"graphql": "^14.3.1",
"grip": "^1.3.0",
"killable": "^1.0.1",
"node-fetch": "^2.3.0",
"tap-bark": "^1.0.0",
"ts-dedent": "^1.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"alsatian": "^2.4.0",
"prettier": "^1.17.1",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2"
}
}