-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
38 lines (38 loc) · 1.06 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
{
"name": "graphql-api",
"scripts": {
"deploy": "npm-run-all lint:js sls",
"jest": "jest --coverage",
"jest:u": "jest -u --coverage",
"lint:js": "eslint lib",
"lint:js:fix": "eslint lib --fix",
"sls": "sls deploy --verbose",
"test": "npm-run-all lint:js copy babel jest",
"test:u": "npm-run-all lint:js copy babel jest:u"
},
"dependencies": {
"aws-sdk": "^2.94.0",
"babel-runtime": "^6.25.0",
"graphql": "^0.10.5",
"graphql-server-lambda": "^1.0.4",
"graphql-tools": "^1.1.0",
"merge-graphql-schemas": "^1.1.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"aws-sdk-mock": "^1.7.0",
"babel-core": "^6.23.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"imports-loader": "^0.7.1",
"jest-cli": "^20.0.4",
"lambda-tester": "^3.0.2",
"npm-run-all": "^4.0.2",
"serverless-webpack": "^2.2.0",
"webpack": "^3.4.1",
"webpack-node-externals": "^1.6.0"
}
}