forked from awslabs/aws-api-gateway-developer-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.42 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
{
"name": "aws-serverless-dev-portal",
"version": "3.0.3",
"description": "Serverless Developer Portal for API Gateway",
"main": "lambda.js",
"scripts": {
"get-dependencies": "npm install && npm run get-dev-portal-dependencies && npm run get-lambda-dependencies;",
"get-lambda-dependencies": "find lambdas/*/package.json -type f -exec sh -c 'cd $(dirname {}) && npm run get-dependencies' \\;",
"get-dev-portal-dependencies": "(cd dev-portal; npm run get-dependencies)",
"test": "node scripts/test.js",
"coverage": "node scripts/test.js --coverage=true",
"integ": "node scripts/test.js --integ=true",
"cover": "npm run coverage",
"cfn-lint": "cfn-lint cloudformation/template.yaml -c I"
},
"license": "Apache-2.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"aws-sdk": "^2.406.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"memorystream": "^0.3.1",
"xml-js": "^1.6.8"
},
"dependencies": {
"request-promise": "^4.2.4"
}
}