-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1 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
{
"name": "graphql-cli-voyager",
"version": "0.1.2",
"description": "GraphQL CLI Voyager plugin",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "npm run build && npm run lint",
"lint": "tslint {src,test}/**/*.ts",
"start": "ts-node src/bin.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphcool/graphql-cli-voyager.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/graphcool/graphql-cli-voyager/issues"
},
"homepage": "https://github.com/graphcool/graphql-cli-voyager#readme",
"devDependencies": {
"@types/graphql": "0.11.7",
"@types/node": "8.5.7",
"tslint": "5.8.0",
"tslint-config-standard": "7.0.0",
"typescript": "2.6.2"
},
"dependencies": {
"express": "^4.15.3",
"express-graphql": "^0.6.6",
"graphql-cli": "^2.0.0",
"graphql-voyager": "^1.0.0-rc.7",
"opn": "^5.1.0"
}
}