-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 826 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 826 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
{
"name": "example-typecript-lambda",
"version": "1.0.0",
"type": "module",
"scripts": {
"test": "npm run test --workspaces --if-present",
"lint": "eslint packages/** --ext .ts --no-error-on-unmatched-pattern",
"format": "prettier --write packages/**/*.ts",
"build": "npm run build --workspaces --if-present"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@guardian/eslint-config": "13.0.3",
"@guardian/prettier": "10.0.0",
"@guardian/tsconfig": "1.0.1",
"@jest/globals": "30.2.0",
"@types/jest": "30.0.0",
"@types/node": "25.3.3",
"eslint": "9.39.2",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.2.0",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"prettier": "@guardian/prettier"
}