-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 KB
/
package.json
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
{
"name": "service-catalogue",
"version": "0.0.1",
"description": "A lens into your GitHub organisation",
"scripts": {
"test": "npm run test --workspaces --if-present",
"test-update": "jest -u",
"synth": "npm run synth --workspace=cdk",
"pretypecheck": "npm -w common run typecheck",
"typecheck": "npm run typecheck --workspaces",
"build": "npm run build --workspaces --if-present",
"lint": "eslint packages/** --ext .ts,.tsx --no-error-on-unmatched-pattern",
"cloudbuster:start": "npm run start --workspace cloudbuster",
"cloudbuster:test": "npm run test --workspace cloudbuster"
},
"author": "Guardian Developers",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@guardian/eslint-config-typescript": "12.0.0",
"@guardian/prettier": "8.0.1",
"@guardian/tsconfig": "^0.3.1",
"@swc/core": "1.7.26",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"dotenv": "^16.4.7",
"esbuild": "^0.24.2",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^54.0.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.2.5",
"tsx": "4.15.7",
"typescript": "5.5.3"
},
"eslintConfig": {
"extends": "@guardian/eslint-config-typescript",
"plugins": [
"prettier",
"unicorn"
],
"rules": {
"prettier/prettier": "error",
"@typescript-eslint/no-non-null-assertion": "error",
"unicorn/prefer-array-flat-map": "error"
}
},
"eslintIgnore": [
"packages/common/dist"
],
"prettier": "@guardian/prettier"
}