-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.39 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
{
"name": "cdp-user-service-backend",
"version": "0.0.0",
"description": "CDP Backend Template",
"main": ".server/index.js",
"type": "module",
"engines": {
"node": ">=20.11.1"
},
"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,ts,md,json,config.js,test.js,graphql.js}\"",
"format:check": "prettier --check \"src/**/*.js\" \"**/*.{js,cjs,ts,md,json,config.js,test.js,graphql.js}\"",
"postinstall": "npm run setup:husky",
"lint": "npm run lint:js",
"lint:fix": "eslint . --fix",
"lint:js": "eslint .",
"postversion": "git add package.json package-lock.json && git commit -m $npm_package_version",
"test": "TZ=UTC jest --coverage --verbose --runInBand",
"test:watch": "TZ=UTC jest --watch",
"server:watch": "nodemon --exec tsx --enable-source-maps ./src",
"server:debug": "nodemon --exec tsx --enable-source-maps --inspect=9249 ./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": {
"@azure/identity": "4.3.0",
"@babel/runtime": "7.24.7",
"@elastic/ecs-pino-format": "1.5.0",
"@hapi/boom": "10.0.1",
"@hapi/hapi": "21.3.10",
"@hapi/jwt": "3.2.0",
"@hapi/wreck": "18.1.0",
"@microsoft/microsoft-graph-client": "3.0.7",
"@octokit/auth-app": "6.1.1",
"@octokit/core": "^5.2.0",
"@octokit/plugin-paginate-graphql": "^4.0.1",
"aws4": "1.13.0",
"babel-plugin-module-resolver": "5.0.2",
"convict": "6.2.4",
"hapi-pino": "12.1.0",
"hapi-pulse": "3.0.1",
"https-proxy-agent": "7.0.4",
"joi": "17.13.1",
"joi-objectid": "4.0.2",
"lodash": "4.17.21",
"mongo-locks": "3.0.2",
"mongodb": "6.8.0",
"pino": "9.2.0",
"tsx": "4.16.2",
"undici": "6.19.2"
},
"devDependencies": {
"@babel/cli": "7.24.7",
"@babel/core": "7.24.7",
"@babel/preset-env": "7.24.7",
"@shelf/jest-mongodb": "4.3.2",
"@types/convict": "6.1.6",
"@types/eslint": "9.6.0",
"@types/jest": "29.5.13",
"@types/lodash": "4.17.6",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"babel-jest": "29.7.0",
"babel-loader": "9.1.3",
"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.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"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.0.11",
"jest": "29.7.0",
"jest-fetch-mock": "3.0.3",
"nodemon": "3.1.4",
"npm-run-all": "4.1.5",
"pino-pretty": "11.2.1",
"prettier": "3.3.2"
}
}