-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "pressreader",
"version": "0.0.1",
"description": "⛵",
"scripts": {
"test": "npm run test --workspaces --if-present",
"synth": "npm run synth --workspace=cdk",
"typecheck": "npm run typecheck --workspaces",
"format": "prettier --write --ignore-path .gitignore \"./**/*{.js,.ts,.json,.md,.yml}\"",
"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": "^12.0.0",
"@guardian/prettier": "^8.0.1",
"@guardian/tsconfig": "^1.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.14.15",
"aws-sdk-client-mock": "^4.1.0",
"esbuild": "^0.24.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"eslintConfig": {
"extends": "@guardian/eslint-config-typescript",
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
},
"eslintIgnore": [
"packages/common/dist"
],
"prettier": "@guardian/prettier"
}