-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.25 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
{
"name": "aws-cdk-js-dev-guide",
"description": "A guide for AWS CDK development using TypeScript and Javascript",
"version": "0.1.0",
"bin": {
"aws-cdk-js-dev-guide-dev": "bin/aws-cdk-js-dev-guide.js"
},
"scripts": {
"build": "npm run lint && node tools/build-layers && echo 'build in progress...' && tsc",
"cdk": "cdk",
"lint": "echo 'linting...' && eslint . --ignore-pattern .gitignore",
"package-upgrade": "node tools/package-upgrade",
"synth": "npm run build && echo 'performing cdk synthesis...' && cdk synth"
},
"repository": {
"type": "git",
"url": "git+https://github.com/therightstuff/aws-cdk-js-dev-guide.git"
},
"author": "therightstuff",
"license": "MIT",
"bugs": {
"url": "https://github.com/therightstuff/aws-cdk-js-dev-guide/issues"
},
"homepage": "https://github.com/therightstuff/aws-cdk-js-dev-guide#readme",
"dependencies": {
"@types/node": "22.7.1",
"aws-cdk-js-dev-guide": "file:",
"aws-cdk-lib": "^2.160.0",
"aws-sdk": "^2.1691.0",
"constructs": "^10.3.0",
"dotenv": "^16.4.5",
"eslint": "^9.11.1",
"fs-extra": "^11.2.0",
"simple-recursive-checksum": "^0.0.14",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "~5.6.2"
}
}