-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.66 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.66 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "cdk",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "tsc",
"test": "jest",
"test-update": "jest -u",
"format": "prettier --write \"{lib,bin}/**/*.ts\"",
"lint": "eslint lib/** bin/** --no-error-on-unmatched-pattern",
"synth": "cdk synth --path-metadata false --version-reporting false",
"diff": "cdk diff --path-metadata false --version-reporting false"
},
"devDependencies": {
"@guardian/cdk": "61.1.3",
"@guardian/eslint-config-typescript": "8.0.0",
"@guardian/prettier": "1.0.0",
"@types/jest": "^29.5.13",
"@types/node": "18.0.3",
"aws-cdk": "2.178.2",
"aws-cdk-lib": "2.177.0",
"constructs": "10.4.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"source-map-support": "^0.5.20",
"ts-jest": "^29.2.5",
"ts-node": "^10.8.2",
"typescript": "~5.1.3"
},
"prettier": "@guardian/prettier",
"jest": {
"testMatch": [
"<rootDir>/lib/**/*.test.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupFilesAfterEnv": [
"./jest.setup.js"
]
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"jest": true
},
"extends": [
"@guardian/eslint-config-typescript"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-inferrable-types": 0,
"import/no-namespace": 2
},
"ignorePatterns": [
"**/*.js",
"node_modules",
"cdk.out",
".eslintrc.js",
"jest.config.js"
]
},
"packageManager": "pnpm@8.15.7"
}