-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 956 Bytes
/
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
{
"name": "aws-cdk-typescript",
"version": "0.1.0",
"bin": {
"aws-cdk-typescript": "bin/aws-cdk-typescript.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint . --ext .ts --fix",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"aws-cdk": "2.118.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "~5.3.3"
},
"dependencies": {
"aws-cdk-lib": "2.118.0",
"aws-sdk": "^2.1531.0",
"constructs": "^10.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"source-map-support": "^0.5.21"
}
}