-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.97 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
73
74
75
76
77
78
{
"name": "cdk",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write \"{lib,bin}/**/*.ts\"",
"lint": "eslint lib/**/*.ts bin/**/*.ts --no-error-on-unmatched-pattern",
"synth": "cdk synth --path-metadata false --version-reporting false",
"diff": "cdk diff --path-metadata false --version-reporting false",
"deploy-code": "cdk deploy --path-metadata false --version-reporting false ManageFrontend-CODE"
},
"devDependencies": {
"@guardian/cdk": "61.1.0",
"@guardian/eslint-config-typescript": "1.0.7",
"@guardian/prettier": "1.0.0",
"@types/jest": "^29.5.0",
"@types/node": "18.7.14",
"@types/parse-path": "7.1.0",
"aws-cdk": "2.1128.1",
"aws-cdk-lib": "2.260.0",
"constructs": "10.4.3",
"eslint": "9.15.0",
"jest": "^29.7.0",
"prettier": "^2.7.1",
"source-map-support": "0.5.21",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"prettier": "@guardian/prettier",
"resolutions": {
"aws-cdk": "2.1007.0",
"aws-cdk-lib": "2.260.0",
"constructs": "10.4.3",
"@guardian/cdk/**/aws-cdk-lib": "2.246.0",
"@guardian/cdk/**/constructs": "10.4.3",
"**/aws-cdk-lib": "2.246.0",
"**/constructs": "10.4.3",
"picomatch": "^4.0.4",
"flatted": "^3.4.2",
"lodash": "^4.18.0",
"minimatch": "^5.1.8"
},
"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
}
}
}