-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.71 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
{
"name": "water-abstraction-service",
"version": "3.13.1",
"description": "API containing the business logic required for the water abstraction service to function",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/DEFRA/water-abstraction-service"
},
"author": "SROC service team",
"license": "OGL-UK-3.0",
"scripts": {
"test": "LAZY_REDIS=1 lab",
"migrate": "node scripts/create-schema && node scripts/migrate && node scripts/migrate-task-config/migrate-task-config.js",
"migrate:local-test": "export NODE_ENV=test && node scripts/create-schema && node scripts/migrate && node scripts/migrate-task-config/migrate-task-config.js",
"migrate:down": "db-migrate down --verbose",
"migrate:create": "db-migrate create --sql-file --",
"lint": "standard",
"postinstall": "scripts/fix-libxmljs-location.sh",
"version": "npx --yes auto-changelog -p --commit-limit false && git add CHANGELOG.md"
},
"dependencies": {
"@envage/hapi-pg-rest-api": "^7.0.1",
"@envage/water-abstraction-helpers": "^4.9.0",
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^21.3.10",
"@hapi/hoek": "^10.0.1",
"@hapi/vision": "^7.0.3",
"@sindresorhus/is": "^4.0.0",
"aws-sdk": "^2.1658.0",
"blipp": "^4.0.2",
"bluebird": "^3.7.2",
"bookshelf": "^1.2.0",
"bookshelf-case-converter-plugin": "^2.0.0",
"bookshelf-json-columns": "^3.0.0",
"bullmq": "1.87.2",
"commander": "^9.4.1",
"csv-parse": "^2.5.0",
"db-migrate": "^0.11.14",
"db-migrate-pg": "^1.5.2",
"decimal.js-light": "^2.5.1",
"dotenv": "^16.4.5",
"es6-error": "^4.1.1",
"got": "^11.8.2",
"hapi-auth-jwt2": "^10.6.0",
"hapi-pino": "^11.0.1",
"ioredis": "^5.4.1",
"joi": "^17.13.3",
"knex": "^0.21.1",
"libxmljs": "^1.0.11",
"lodash": "^4.17.21",
"moment": "2.29.4",
"moment-range": "^4.0.2",
"node-cron": "^3.0.3",
"notifications-node-client": "^4.9.0",
"nunjucks": "^3.2.4",
"object-mapper": "^6.2.0",
"p-waterfall": "^2.1.0",
"pg": "^8.12.0",
"promise-retry": "^2.0.1",
"proxy-agent": "^5.0.0",
"puppeteer": "19.8.0",
"qrcode-svg": "^1.1.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"sentence-case": "^3.0.4",
"sha1": "^1.1.1",
"snakecase-keys": "^5.4.4",
"title-case": "^3.0.3",
"tunnel": "0.0.6",
"url-join": "^4.0.1",
"uuid": "^9.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@hapi/basic": "^7.0.2",
"@hapi/code": "^9.0.3",
"@hapi/lab": "^25.2.0",
"csv-stringify": "^6.5.0",
"nock": "^13.5.4",
"pino-pretty": "^9.1.1",
"promise-poller": "^1.9.1",
"sinon": "^14.0.2",
"standard": "^17.1.0"
}
}