-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "live-workshop-pipeline",
"version": "0.1.0",
"engines": {
"node": ">=14.0.0 <=18.17.1"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint . --ext .ts",
"prettier": "prettier --check --config .prettierrc 'lib/**/*.ts' 'bin/**/*.ts'",
"format": "prettier --write --config .prettierrc 'lib/**/*.ts' 'bin/**/*.ts'",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/node": "10.17.27",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"aws-cdk": "2.96.0",
"cdk-nag": "2.21.50",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-no-loops": "^0.3.0",
"jest": "^27.5.1",
"prettier": "^2.8.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "~3.9.7"
},
"dependencies": {
"aws-cdk-lib": "2.96.0",
"aws-sdk": "^2.1354.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}