-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.67 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.67 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "forms-notify-listener",
"version": "0.0.0",
"description": "Service to handle form submission events on SQS queue and relay to govuk notify",
"license": "OGL-UK-3.0",
"author": "Defra DDTS",
"type": "module",
"main": ".server/index.js",
"scripts": {
"build": "npm run build:server",
"build:server": "babel --delete-dir-on-start --ignore \"**/*.test.js\" --ignore \"src/__fixtures__\" --copy-files --no-copy-ignored --keep-file-extension --source-maps --out-dir ./.server ./src",
"dev": "npm run server:watch:dev",
"dev:debug": "npm run server:watch:debug",
"format": "prettier --write \"**/*.{cjs,js,json,md,mjs}\"",
"format:check": "prettier --check \"**/*.{cjs,js,json,md,mjs}\"",
"postinstall": "npm run setup:husky",
"lint": "npm run lint:editorconfig && npm run lint:js && npm run lint:types",
"lint:editorconfig": "editorconfig-checker",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "eslint . --max-warnings 0",
"lint:types": "tsc --noEmit",
"postversion": "git add package.json package-lock.json && git commit -m $npm_package_version",
"test": "jest --color --coverage --verbose",
"test:watch": "jest --color --watch",
"server:watch": "NODE_ENV=development tsx watch --clear-screen=false --enable-source-maps --exclude \"**/*.test.*\"",
"server:watch:dev": "npm run server:watch -- ./src/index.js",
"server:watch:debug": "npm run server:watch -- --inspect-wait ./src/index.js",
"prestart": "npm run build",
"start": "NODE_ENV=${NODE_ENV:-production} node --enable-source-maps ./.server",
"setup:husky": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module"
},
"dependencies": {
"@aws-sdk/client-sqs": "3.982.0",
"@defra/forms-engine-plugin": "4.7.3",
"@defra/forms-model": "3.0.638",
"@defra/hapi-tracing": "^1.28.0",
"@elastic/ecs-pino-format": "^1.5.0",
"@hapi/hapi": "^21.4.2",
"@hapi/hoek": "^11.0.7",
"@hapi/jwt": "3.2.1",
"aws-embedded-metrics": "4.2.0",
"aws4": "^1.13.2",
"convict": "6.2.5",
"convict-format-with-validator": "6.2.0",
"date-fns": "4.1.0",
"date-fns-tz": "3.2.0",
"dotenv": "^17.2.3",
"hapi-pino": "^13.0.0",
"hapi-pulse": "3.0.1",
"http-status-codes": "2.3.0",
"joi": "^17.13.3",
"mongodb": "^6.18.0",
"pino": "^9.11.0",
"pino-pretty": "^13.0.0",
"proxy-agent": "^6.5.0"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.28.4",
"@babel/plugin-syntax-import-attributes": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@types/convict": "^6.1.6",
"@types/eslint": "^9.6.1",
"@types/jest": "^30.0.0",
"@types/luxon": "^3.6.2",
"@types/node": "^24.10.0",
"@types/nunjucks": "^3.2.6",
"@types/slug": "^5.0.9",
"aws-sdk-client-mock": "4.1.0",
"aws-sdk-client-mock-jest": "4.1.0",
"babel-jest": "^30.1.2",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-import-meta": "^2.3.3",
"editorconfig-checker": "^6.0.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest": "^28.14.0",
"eslint-plugin-jsdoc": "^51.0.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "29.7.0",
"lint-staged": "^16.1.2",
"luxon": "^3.6.1",
"neostandard": "^0.12.2",
"nock": "14.0.11",
"nunjucks": "3.2.4",
"oidc-client-ts": "^3.2.1",
"prettier": "^3.5.3",
"tsx": "^4.20.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.56.1"
},
"overrides": {
"fast-xml-parser": ">=5.3.8"
},
"engines": {
"node": "^22.11.0",
"npm": ">=10.9.0 <11.6.4"
}
}