-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "@guardian/ab-testing-cdk",
"version": "1.0.0",
"description": "CDK stacks for AB testing infrastructure",
"main": "config/index.ts",
"type": "module",
"scripts": {
"test": "node --test --test-reporter spec ./**/*.test.ts",
"test-update": "node --test --test-reporter spec --test-update-snapshots ./**/*.test.ts",
"synth": "cdk synth --path-metadata false --version-reporting false",
"lint": "eslint .",
"prettier:check": "prettier . --check --cache",
"prettier:fix": "prettier . --write --cache",
"lint-staged": "lint-staged"
},
"dependencies": {},
"lint-staged": {
"*.ts": [
"pnpm lint --fix",
"pnpm prettier:fix"
]
},
"devDependencies": {
"@aws-sdk/client-s3": "3.991.0",
"@aws-sdk/client-ssm": "3.991.0",
"@guardian/cdk": "62.0.1",
"@guardian/eslint-config": "12.0.1",
"@guardian/tsconfig": "1.0.1",
"@types/node": "22.17.0",
"aws-cdk": "2.1030.0",
"aws-cdk-lib": "2.220.0",
"eslint": "9.39.1",
"prettier": "3.0.3",
"source-map-support": "0.5.21",
"typescript": "5.9.3"
}
}