-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 1.19 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
{
"name": "@guardian/support-service-lambdas",
"version": "1.0.0",
"scripts": {
"build": "pnpm --stream -r run build",
"package": "pnpm --stream -r run package",
"type-check": "tsc --noEmit",
"lint": "pnpm --stream -r run lint",
"clean": "rm -rf .parcel-cache && pnpm -r run clean",
"test": "pnpm --stream -r run test",
"it-test": "pnpm --stream -r run it-test",
"new-lambda": "pnpm hygen new-lambda api-gateway && pnpm install && pnpm --filter cdk lint --fix && pnpm fix-formatting && pnpm --filter cdk test -- -u && git add ./cdk/lib/__snapshots__/*.test.ts.snap",
"prepare": "husky",
"fix-formatting": "pnpm -r run fix-formatting",
"check-formatting": "pnpm -r run check-formatting"
},
"devDependencies": {
"@guardian/eslint-config-typescript": "12.0.0",
"@guardian/prettier": "^8.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"hygen": "^6.2.11",
"jest": "^29.7.0",
"jest-runner-groups": "^2.2.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]"
}