-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1013 Bytes
/
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
{
"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-typescript": "10.0.1",
"@guardian/prettier": "8.0.1",
"@guardian/tsconfig": "1.0.0",
"@jest/globals": "29.7.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.2",
"eslint": "8.57.1",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"tsx": "4.19.2",
"typescript": "5.3.3"
},
"prettier": "@guardian/prettier",
"eslintConfig": {
"extends": "@guardian/eslint-config-typescript",
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
}
}