-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 986 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
{
"name": "graphql-binding-example",
"version": "0.1.0",
"main": "lib/index.js",
"repository": "[email protected]:graphql-binding/graphql-binding-example-service.git",
"author": "Abhi Aiyer <[email protected]>",
"license": "MIT",
"dependencies": {
"apollo-link-http": "^1.5.4",
"graphql": "^0.13.2",
"graphql-binding": "^2.2.2",
"graphql-tools": "^3.1.1",
"node-fetch": "^2.2.0"
},
"scripts": {
"generateTs": "graphql-binding -i ./src/schema.js -l typescript -b ./src/typings.ts",
"generate": "graphql-binding -i ./src/schema.js -l javascript -b ./src/binding.js -t ./src/typeDefs.graphql",
"release": "standard-version",
"prepare": "babel ./src --out-dir ./lib",
"test": "mocha ./__tests__ --require babel-register --watch"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"standard-version": "^4.4.0",
"typescript": "^3.0.1"
}
}