-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "aws-cdk-typescript",
"bin": {
"aws-cdk-typescript": "bin/aws-cdk-typescript.js"
},
"scripts": {
"prepare": "husky install",
"test": "jest",
"cdk:synth": "cdk synth",
"cdk:deploy": "cdk deploy --all",
"lint": "eslint . --ext .js,.ts --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/node": "14.18.32",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.13.0",
"aws-cdk": "2.21.1",
"esbuild": "0.15.12",
"eslint": "8.14.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-jest": "26.1.5",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.4.1",
"prettier": "2.6.2",
"ts-jest": "27.1.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"dependencies": {
"aws-cdk-lib": "2.12.0",
"axios": "0.27.2",
"cheerio": "1.0.0-rc.10",
"constructs": "10.0.75",
"source-map-support": "0.5.21",
"twitter-api-v2": "1.12.1"
}
}