-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.17 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "ts-simple-api-proxy-template-sam-cli",
"version": "1.0.0",
"description": "Typescript Lambda function template for a simple API proxy service with SAM CLI",
"scripts": {
"build": "tsc",
"watch:build": "tsc --watch",
"webpack-build": "webpack",
"test": "nyc --reporter=html --reporter=text mocha --require source-map-support/register -r ts-node/register test/**/*.spec.ts",
"test:watch": "mocha --require source-map-support/register -r ts-node/register --watch-files src, test/**/*.spec.ts --watch",
"integration": "nyc --reporter=html --reporter=text mocha -r ts-node/register --recursive --timeout 5000 integration/**/*.ts",
"dev": "yarn webpack-build && sam local start-api",
"pre-deploy": "yarn webpack-build && sam build && cp -R ./dist ./.aws-sam/build/TsSimpleApiProxyFunction",
"deploy-test": "yarn pre-deploy && sam deploy --s3-bucket test.lambdafunction.bucket --s3-prefix simpleapiproxy",
"remove": "aws cloudformation delete-stack --stack-name ts-simple-api-proxy-with-sam"
},
"repository": {
"type": "git",
"url": "https://github.com/aws-lambda-template-generator/ts-simple-api-proxy-template-sam-cli"
},
"keywords": [],
"author": "mdh",
"license": "ISC",
"homepage": "https://github.com/aws-lambda-template-generator",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"html"
],
"all": true
},
"dependencies": {
"@types/request-promise": "^4.1.42",
"request": "^2.88.0",
"request-promise": "4.2.2"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/nock": "^11.1.0",
"@types/node": "^13.13.0",
"@types/request-promise": "^4.1.46",
"@types/sinon": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^7.1.1",
"mocha-typescript": "^1.1.17",
"nock": "^12.0.3",
"nyc": "^15.0.1",
"sinon": "^9.0.2",
"source-map-support": "^0.5.17",
"ts-loader": "^7.0.1",
"tslint": "^6.1.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^4.5.0"
}
}