-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.53 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
37
38
39
40
41
42
43
44
45
46
{
"name": "infra-as-code-with-cdk",
"version": "0.2.0",
"bin": {
"infra-as-code-with-cdk": "bin/app.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -w",
"test": "jest",
"test:contract": "jest test/contract",
"test:all": "jest --testPathPattern='\\.test\\.ts$'",
"cdk": "cdk",
"deploy": "cdk deploy",
"destroy": "cdk destroy",
"synth": "cdk synth -c platformEnv=${PLATFORM_ENV:-dev}",
"lint": "eslint 'bin/**/*.ts' 'lib/**/*.ts' 'test/**/*.ts' 'packages/**/*.ts' 'applications/**/*.ts'",
"format": "prettier --check '**/*.ts' '**/*.json' '**/*.yml' '**/*.yaml' '**/*.md'",
"format:fix": "prettier --write '**/*.ts' '**/*.json' '**/*.yml' '**/*.yaml' '**/*.md'",
"coverage": "jest --coverage",
"precommit": "npm run build && npm run lint && npm test",
"validate": "npm run build && npm run lint && npm test && npm run synth"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.122",
"@types/jest": "^29.5.5",
"@types/node": "20.7.1",
"aws-cdk": "2.99.1",
"esbuild": "^0.21.5",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"dependencies": {
"aws-cdk-lib": "2.99.1",
"aws-sdk": "^2.1473.0",
"cdk-nag": "^2.28.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}