-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.24 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
{
"name": "@92green/serverless-graphql-service",
"version": "0.5.0",
"description": "Service to handle graphql requests through serverless",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": "[email protected]:92green/serverless-graphql-service.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Dan Coates <[email protected]>",
"license": "MIT",
"scripts": {
"prepublish": "NODE_ENV=production yarn run build",
"watch": "rm -rf lib && babel src --out-dir lib -w",
"build": "rm -rf lib && babel src --out-dir lib",
"flow": "blueflag-test flow",
"lint": "blueflag-test lint",
"test": "blueflag-test test",
"coverage": "blueflag-test coverage --branches 0 --functions 0 --lines 0 --statements 0",
"test-all": "yarn lint && yarn flow"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-extract-flow-types": "1.0.0",
"babel-preset-blueflag": "^0.6.0",
"blueflag-test": "^0.23.0",
"graphql": "^0.11.3",
"sinon": "^9.0.2"
},
"dependencies": {
"dataloader": "^1.3.0",
"gromit": "^0.0.12",
"immutable": "^3.8.2",
"json-stringify-safe": "^5.0.1"
},
"peerDependencies": {
"graphql": ">=0.10.3 <0.12.0"
}
}