-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"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",
"typecheck": "tsc",
"build": "npm run build --workspaces --if-present",
"lint": "eslint packages/** --ext .ts --no-error-on-unmatched-pattern"
},
"author": "Guardian Developers",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@guardian/eslint-config-typescript": "9.0.4",
"@guardian/prettier": "8.0.0",
"@guardian/tsconfig": "^0.2.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"dotenv": "^16.4.5",
"esbuild": "^0.20.2",
"esbuild-jest": "^0.5.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^52.0.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"tsx": "^4.7.2",
"typescript": "5.3.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"
}