-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "generate-receipt",
"version": "0.1.0",
"bin": {
"generate-receipt": "bin/generate-receipt.js"
},
"scripts": {
"prepare": "npx husky install",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"cdk": "cdk",
"cdk:ls": "cdk --app cdk.out ls",
"build:lambda": "cd lambda && npm run build",
"bootstrap": "cdk bootstrap",
"deploy": "cdk deploy",
"destroy": "cdk destroy",
"execute": "npm run build && node execute/index.js"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.92",
"@types/jest": "^26.0.10",
"@types/mysql": "^2.15.21",
"@types/node": "10.17.27",
"aws-cdk": "2.13.0",
"aws-lambda": "^1.0.7",
"husky": "^7.0.4",
"jest": "^26.4.2",
"prettier": "^2.5.1",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7"
},
"dependencies": {
"aws-cdk-lib": "2.13.0",
"aws-sdk": "^2.1080.0",
"constructs": "^10.0.0",
"dotenv": "^16.0.0",
"mysql": "^2.18.1",
"source-map-support": "^0.5.16"
}
}