-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.99 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "di-account-home-backend",
"version": "1.0.0",
"description": "Account Home Backend",
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rm -rf dist node_modules logs.json",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:cov": "jest --coverage",
"prepare": "husky || true"
},
"author": "GDS",
"license": "OGL",
"repository": {
"type": "git",
"url": "https://github.com/alphagov/di-account-management-backend.git"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.14.0",
"@types/aws-lambda": "^8.10.143",
"@types/jest": "^29.5.14",
"@types/jest-when": "^3.5.2",
"@types/mocha": "^10.0.9",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0",
"axios-mock-adapter": "2.1.0",
"babel-jest": "^29.1.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^9.1.6",
"jest": "^29.3.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"dependencies": {
"@aws-crypto/client-node": "^4.0.2",
"@aws-lambda-powertools/parameters": "^2.10.0",
"@aws-sdk/client-dynamodb": "^3.682.0",
"@aws-sdk/client-secrets-manager": "^3.682.0",
"@aws-sdk/client-sfn": "^3.682.0",
"@aws-sdk/client-sqs": "^3.682.0",
"@aws-sdk/lib-dynamodb": "^3.685.0",
"@aws-sdk/util-dynamodb": "^3.602.0",
"@types/aws-lambda": "^8.10.145",
"axios": "^1.7.7",
"esbuild": "0.23.0",
"jest-when": "^3.6.0",
"notifications-node-client": "^8.2.1"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md,yaml}": [
"npx prettier --write"
]
}
}