-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.3 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.3 KB
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
{
"name": "aws-typescript-lambda",
"version": "1.0.0",
"description": "aws-typescript-lambda",
"engines": {
"node": ">=14.16.1"
},
"private": true,
"scripts": {
"build": "tsc --build",
"check:lint": "yarn eslint --ignore-path ../../.eslintignore '**/*{.ts, .tsx}'",
"deploy:dev": "yarn stage && sam deploy --config-env dev --no-fail-on-empty-changeset",
"deploy:prod": "yarn stage && sam deploy --config-env prod --no-fail-on-empty-changeset",
"invoke": "STAGE=dev yarn stage && sam local invoke -e event/event.json",
"start": "STAGE=dev yarn stage && sam local start-api",
"lint:fix": "yarn eslint --fix --ignore-path ../../.eslintignore '**/*{.ts, .tsx}'",
"stage": "cp package*.json target/ && cd target; yarn install --production",
"test": "AWS_PROFILE=fake-profile NODE_ENV=test jest --config jest.config.json",
"test:watch": "NODE_ENV=test jest --watch --config jest.config.json"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/lambda-log": "^2.2.0",
"@types/aws-lambda": "^8.10.64",
"@types/node": "^14.17.5",
"@vercel/ncc": "^0.26.1",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"aws-lambda": "^1.0.6",
"aws-sdk": "^2.773.0",
"lambda-log": "^2.0.0",
"decoders": "^1.17.0"
}
}