-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.35 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
{
"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.js && echo 'build in progress...' && tsc",
"cdk": "cdk",
"lint": "echo 'linting...' && eslint . --ignore-pattern .gitignore",
"package-upgrade": "node tools/package-upgrade.js",
"synth": "npm run build && echo 'performing cdk synthesis...' && cdk synth -v",
"test": "node --experimental-vm-modules node_modules/.bin/jest --coverage"
},
"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": {
"@eslint/js": "^10.0.1",
"@types/node": "25.9.1",
"aws-cdk-lib": "^2.258.0",
"constructs": "^10.6.0",
"dotenv": "^17.4.2",
"eslint": "^10.4.1",
"fs-extra": "^11.3.5",
"globals": "^17.6.0",
"jest": "^30.4.2",
"simple-recursive-checksum": "^0.0.15",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "~6.0.3"
}
}