-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 804 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 804 Bytes
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
{
"name": "api-gateway-integration",
"version": "1.0.0",
"scripts": {
"deploy": "cdk deploy",
"test-lint": "eslint . --ext js,ts --ignore-path ../../.gitignore",
"test-type": "tsc --noEmit",
"test": "yarn test-lint && yarn test-type"
},
"dependencies": {
"aws-cdk-lib": "^2.24.1",
"cdk-scheduler": "workspace:^",
"constructs": "^10.1.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"cdk": "^2.24.1",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.1",
"typescript": "~3.9.7"
}
}