-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.6 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
{
"name": "apex-api-gateway-boilerplate",
"version": "1.0.0",
"licence": "MIT",
"description": "Boilerplate for AWS Lambda and API Gateway using Apex",
"keywords": [
"apex",
"boilerplate",
"aws lambda",
"aws api gateway",
"es6"
],
"author": "Alexis Launay <[email protected]> (http://yorunohikage.fr)",
"repository": "YoruNoHikage/apex-api-gateway-boilerplate",
"scripts": {
"lint": "eslint functions --color",
"test": "cross-env BABEL_ENV=commonjs mocha functions/*/test/** --compilers js:babel-register --recursive --colors --timeout 10000",
"test:watch": "npm test -- --watch",
"lambda:deploy": "apex deploy",
"apigateway:create": "apex-api-gateway create 'Apex API Gateway Boilerplate'",
"apigateway:update": "apex-api-gateway update"
},
"dependencies": {
"apex.js": "^1.0.0",
"babel-polyfill": "^6.3.14"
},
"devDependencies": {
"apex-api-gateway": "^0.1.0",
"babel-cli": "^6.11.4",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.3",
"babel-plugin-syntax-async-functions": "^6.3.13",
"babel-plugin-transform-async-to-generator": "^6.4.6",
"babel-plugin-transform-regenerator": "^6.4.4",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"cross-env": "^2.0.0",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"json-loader": "^0.5.4",
"lambda-tester": "^2.6.0",
"mocha": "^3.0.2",
"webpack": "^1.12.13"
}
}