-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.62 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.62 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "aws-bootstrap",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=20 <23"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"synth": "cdk synth",
"deploy": "cdk deploy",
"bootstrap:commands": "ts-node scripts/bootstrap/print-bootstrap-commands.ts",
"org:add-app": "ts-node scripts/org/add-app.ts",
"org:setup-principal": "ts-node scripts/org/setup-principal.ts",
"org:build": "ts-node scripts/org/build-org.ts",
"org:move": "ts-node scripts/org/move-accounts.ts",
"org:bootstrap": "ts-node scripts/org/bootstrap-cdk.ts",
"org:iam": "ts-node scripts/org/enable-iam-user.ts",
"org:scps": "ts-node scripts/org/deploy-scps.ts",
"org:security": "ts-node scripts/org/enable-security-defaults.ts",
"org:finalize": "ts-node scripts/org/finalize.ts",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"prepare": "husky",
"test": "npm run build && node --test dist/test/*.test.js"
},
"lint-staged": {
"*.{ts,js,json,md}": "biome check --write --files-ignore-unknown=true"
},
"dependencies": {
"aws-cdk-lib": "^2.191.0",
"constructs": "^10.4.2",
"yaml": "^2.8.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/node": "^22.13.5",
"aws-cdk": "^2.1018.0",
"esbuild": "^0.25.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
}
}