-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.1 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
{
"name": "tecnasa-restapi-for-android-app",
"version": "0.1.0",
"bin": {
"tecnasa-restapi": "bin/tecnasa-restapi.js"
},
"scripts": {
"build": "tsc",
"build:prepare": "npm install --prefix src/lambdas",
"build:prod": "tsc && cp src/lambdas/package.json build/lambdas/package.json && cd build/lambdas/ && npm install --only=production",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"cdk:bootstrap": "cdk bootstrap -y -o templates",
"cdk:synth": "cdk synth -y -o templates",
"cdk:diff": "cdk diff -y -o templates",
"cdk:deploy": "cdk deploy -y -o templates --all",
"cdk:destroy": "cdk destroy -y -o templates --all"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"aws-cdk": "2.1.0",
"jest": "^26.4.2",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
},
"dependencies": {
"@aws-cdk/aws-apigateway": "^1.139.0",
"@aws-cdk/aws-dynamodb": "^1.139.0",
"@aws-cdk/aws-lambda": "^1.139.0",
"aws-cdk-lib": "2.1.0",
"constructs": "^10.0.0",
"dotenv": "^11.0.0"
}
}