-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "main",
"version": "0.1.0",
"bin": {
"main": "bin/main.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.115",
"@types/axios": "^0.14.0",
"@types/cookie": "^0.5.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"aws-cdk": "2.69.0",
"esbuild": "^0.17.18",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
},
"dependencies": {
"@aws-sdk/client-ssm": "^3.328.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"aws-cdk-lib": "2.69.0",
"aws-jwt-verify": "^4.0.0",
"axios": "^1.4.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"constructs": "^10.0.0",
"cookie": "^0.5.0",
"dotenv": "^16.0.3",
"inversify": "^6.0.1",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21"
}
}