-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.21 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 4.21 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "pafs-backend-api",
"version": "0.0.0",
"description": "This service provides RESTful APIs for managing flood and coastal erosion risk management projects.",
"main": "src/index.js",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "cross-env AWS_EMF_ENVIRONMENT=Local NODE_ENV=development npm run server:watch",
"dev:debug": "cross-env AWS_EMF_ENVIRONMENT=Local NODE_ENV=development npm run server:debug",
"docker:dev": "npm run dev",
"format": "prettier --write \"**/*.{cjs,js,json,md}\"",
"format:check": "prettier --check \"**/*.{cjs,js,json,md}\"",
"git:pre-commit-hook": "npm run security-audit && npm run format:check && npm run lint && npm test",
"lint": "eslint --cache --cache-strategy content \"**/*.{cjs,js}\"",
"lint:fix": "npm run lint -- --fix",
"postinstall": "npm run setup:husky && npm run prisma:generate",
"prisma:generate": "prisma generate",
"prisma:format": "prisma format",
"prisma:validate": "prisma validate",
"prisma:db:pull": "node src/plugins/database/helpers/prisma-db-pull.js",
"security-audit": "npm audit --audit-level=critical",
"server:debug": "node --watch --inspect-brk=0.0.0.0 --env-file-if-exists=.env ./src",
"server:watch": "node --watch --inspect=0.0.0.0 --env-file-if-exists=.env ./src",
"setup:husky": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module",
"start": "NODE_ENV=production node --use-strict . --env-file-if-exists=.env",
"test": "cross-env TZ=UTC vitest run --coverage",
"test:watch": "TZ=UTC vitest"
},
"author": "Defra DDTS",
"license": "OGL-UK-3.0",
"dependencies": {
"@aws-sdk/client-s3": "3.1079.0",
"@aws-sdk/client-sqs": "3.1079.0",
"@aws-sdk/credential-providers": "3.1079.0",
"@aws-sdk/lib-storage": "3.1079.0",
"@aws-sdk/rds-signer": "3.1079.0",
"@aws-sdk/s3-request-presigner": "3.1079.0",
"@defra/cdp-auditing": "0.6.1",
"@defra/cdp-metrics": "0.6.0",
"@defra/hapi-secure-context": "0.4.0",
"@defra/hapi-tracing": "1.30.0",
"@elastic/ecs-pino-format": "1.5.0",
"@hapi/boom": "10.0.1",
"@hapi/hapi": "21.4.9",
"@hapi/inert": "7.1.2",
"@hapi/vision": "7.0.3",
"@prisma/adapter-pg": "7.8.0",
"@prisma/client": "7.8.0",
"@prisma/extension-read-replicas": "0.5.0",
"adm-zip": "0.5.18",
"archiver": "8.0.0",
"aws-embedded-metrics": "4.2.1",
"aws4": "1.13.2",
"bcrypt": "6.0.0",
"convict": "6.2.5",
"convict-format-with-validator": "6.2.0",
"exceljs": "4.4.0",
"global-agent": "3.0.0",
"hapi-auth-jwt2": "11.0.0",
"hapi-pino": "13.0.0",
"hapi-pulse": "4.0.0",
"hapi-swagger": "17.3.2",
"https-proxy-agent": "9.1.0",
"joi": "18.2.3",
"jsonwebtoken": "9.0.3",
"mailchecker": "6.0.20",
"node-cron": "4.6.0",
"node-fetch": "3.3.2",
"notifications-node-client": "8.3.2",
"pg": "8.22.0",
"pino": "10.3.1",
"pino-pretty": "13.1.3",
"prisma": "7.8.0",
"sqs-consumer": "15.0.2",
"undici": "8.7.0"
},
"devDependencies": {
"@babel/core": "8.0.1",
"@babel/preset-env": "8.0.2",
"@vitest/coverage-v8": "4.1.10",
"autoprefixer": "10.5.2",
"cross-env": "10.1.0",
"eslint": "9.39.4",
"husky": "9.1.7",
"neostandard": "0.13.0",
"npm-run-all": "4.1.5",
"prettier": "3.9.4",
"vitest": "4.1.10",
"vitest-fetch-mock": "0.4.5"
},
"overrides": {
"tmp": "^0.2.7",
"form-data": "4.0.6",
"hapi-swagger": {
"joi": "$joi"
},
"@defra/cdp-auditing": {
"joi": "$joi"
},
"hapi-pulse": {
"joi": "$joi"
},
"joi": "$joi",
"hapi-pino": {
"pino": "$pino"
},
"@prisma/config": {
"effect": "3.21.0"
},
"hono": "4.12.25",
"@hono/node-server": "1.19.13",
"minimatch": "10.2.4",
"fast-xml-parser": "5.7.1",
"uuid": "14.0.0"
},
"allowScripts": {
"bcrypt@6.0.0": true,
"prisma@7.8.0": true,
"@prisma/engines@7.8.0": true,
"@defra/cdp-auditing@0.6.1": true,
"@defra/hapi-secure-context@0.4.0": true,
"@defra/hapi-tracing@1.30.0": true,
"@defra/cdp-metrics@0.6.0": true,
"@scarf/scarf@1.4.0": true
}
}