-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 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
{
"name": "water-abstraction-system",
"version": "0.25.0",
"description": "System for managing water abstraction licences, including alerts, returns and billing",
"homepage": "https://github.com/DEFRA/water-abstraction-team",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "bin/build",
"docs": "jsdoc -c .jsdoc.js",
"migrate:make": "knex migrate:make --",
"migrate:make:test": "NODE_ENV=test knex migrate:make --migrations-directory db/migrations/legacy --",
"migrate": "knex migrate:latest",
"migrate:test": "NODE_ENV=test node db/wipe.database.js && NODE_ENV=test knex migrate:latest",
"migrate:wipe": "NODE_ENV=test node db/wipe.database.js",
"rollback": "knex migrate:rollback",
"rollback:test": "NODE_ENV=test knex migrate:rollback",
"rollback:all": "knex migrate:rollback --all",
"rollback:all:test": "NODE_ENV=test knex migrate:rollback --all",
"seed": "knex seed:run --knexfile knexfile.application.js",
"lint": "eslint .",
"pretest": "NODE_ENV=test node db/clean.js",
"test": "lab --silent-skips --shuffle",
"test:skip": "lab --silent-skips --shuffle",
"postinstall": "npm run build",
"version": "npx --yes auto-changelog -p --commit-limit false && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "https://github.com/DEFRA/water-abstraction-system"
},
"author": "Water service team",
"license": "OGL-UK-3.0",
"dependencies": {
"@airbrake/node": "^2.1.8",
"@aws-sdk/client-s3": "^3.379.1",
"@hapi/boom": "^10.0.1",
"@hapi/cookie": "^12.0.1",
"@hapi/crumb": "^9.0.1",
"@hapi/hapi": "^21.3.2",
"@hapi/inert": "^7.1.0",
"@hapi/vision": "^7.0.2",
"@hapi/yar": "^11.0.2",
"@joi/date": "^2.1.0",
"@smithy/node-http-handler": "^2.0.4",
"bcryptjs": "^2.4.3",
"big.js": "^6.2.1",
"dotenv": "^16.3.1",
"got": "^12.5.3",
"govuk-frontend": "^4.7.0",
"hapi-pino": "^12.1.0",
"hpagent": "^1.2.0",
"ioredis": "^5.3.2",
"joi": "^17.9.2",
"knex": "^2.5.1",
"nunjucks": "^3.2.4",
"objection": "^3.1.1",
"p-map": "^7.0.2",
"pg": "^8.11.2",
"pg-query-stream": "^4.5.2",
"request": "^2.88.2",
"sanitizer": "^0.1.3",
"sass": "^1.64.2",
"tar": "^6.1.15"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/hoek": "^11.0.2",
"@hapi/lab": "^25.1.3",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-prettier": "^5.2.1",
"jsdoc": "~4.0.3",
"mock-fs": "^5.2.0",
"neostandard": "^0.11.8",
"nock": "^13.3.2",
"pino-pretty": "^10.2.0",
"prettier": "3.3.3",
"proxyquire": "^2.1.3",
"sinon": "^15.2.0"
}
}