-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.79 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
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
101
102
{
"name": "ras-queue-backend",
"version": "0.0.0",
"description": "CDP Backend Template",
"main": ".server/index.js",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "npm run build:server",
"build:server": "NODE_ENV=production babel --delete-dir-on-start --ignore \"**/*.test.js\" --ignore \"**/__fixtures__\" --ignore \"**/test-helpers\" --copy-files --no-copy-ignored --out-dir ./.server ./src",
"docker:dev": "NODE_ENV=development npm run server:watch",
"dev": "npm run server:watch",
"dev:debug": "npm run server:debug",
"format": "prettier --write \"src/**/*.js\" \"**/*.{js,cjs,md,json,config.js,test.js,graphql.js}\"",
"format:check": "prettier --check \"src/**/*.js\" \"**/*.{js,cjs,md,json,config.js,test.js,graphql.js}\"",
"git:pre-commit-hook": "npm run format:check && npm run lint && npm run test",
"postinstall": "npm run setup:husky",
"lint": "run-s lint:js lint:types",
"lint:fix": "eslint --cache . --fix",
"lint:js": "eslint --cache .",
"lint:types": "tsc --build tsconfig.json",
"postversion": "git add package.json package-lock.json && git commit -m $npm_package_version",
"test": "jest --coverage --verbose --runInBand",
"test:watch": "jest --watch",
"server:watch": "nodemon --exec tsx --enable-source-maps ./src",
"server:debug": "nodemon --exec tsx --enable-source-maps --inspect ./src",
"prestart": "npm run build",
"start": "NODE_ENV=production node --use-strict .",
"setup:husky": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module"
},
"author": "Defra DDTS",
"license": "OGL-UK-3.0",
"dependencies": {
"@aws-sdk/client-sns": "^3.758.0",
"@aws-sdk/client-sqs": "^3.758.0",
"@aws-sdk/credential-providers": "^3.758.0",
"@azure/msal-node": "^3.1.0",
"@babel/runtime": "^7.26.0",
"@defra/hapi-tracing": "^1.0.0",
"@elastic/ecs-pino-format": "^1.5.0",
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^21.3.12",
"aws-embedded-metrics": "^4.2.0",
"aws4": "^1.13.2",
"babel-plugin-module-resolver": "^5.0.2",
"convict": "^6.2.4",
"exceljs": "^4.4.0",
"global-agent": "^3.0.0",
"hapi-pino": "^12.1.0",
"hapi-pulse": "^3.0.1",
"https-proxy-agent": "^7.0.5",
"lodash": "^4.17.21",
"mongo-locks": "^3.0.2",
"node-fetch": "^3.3.2",
"notifications-node-client": "^7.0.6",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"qs": "^6.14.0",
"sqs-consumer": "^11.6.0",
"undici": "^6.20.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@shelf/jest-mongodb": "4.3.2",
"@types/convict": "^6.1.6",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/nunjucks": "^3.2.6",
"@types/webpack-assets-manifest": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"babel-plugin-transform-import-meta": "^2.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsdoc": "^48.8.3",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.4.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-fetch-mock": "3.0.3",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}