-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 932 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 932 Bytes
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
{
"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 --no-error-on-unmatched-pattern"
},
"author": "Guardian Developers",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@guardian/eslint-config": "^11.0.0",
"@guardian/prettier": "^8.0.1",
"@guardian/tsconfig": "^1.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.17.58",
"esbuild": "^0.25.10",
"eslint": "^9.37.0",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"typescript": "^5.8.3"
},
"eslintIgnore": [
"packages/common/dist"
],
"prettier": "@guardian/prettier"
}