generated from DEFRA/ffc-template-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.26 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
103
104
105
106
107
108
109
110
111
112
{
"name": "ffc-ahwr-dashboard",
"version": "2.1.3",
"description": "Dashboard service for AHWP service",
"homepage": "https://github.com/DEFRA/ffc-ahwr-dashboard",
"main": "app/index.js",
"type": "module",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"pretest": "npm run test:lint",
"test": "jest --runInBand",
"test:watch": "jest --coverage=false --onlyChanged --watch --runInBand",
"test:watch:all": "npm-run-all --parallel test:watch build:watch",
"test:lint": "standard",
"test:lint-fix": "standard --fix",
"test:debug": "node --inspect-brk=0.0.0.0 ./node_modules/jest/bin/jest.js --coverage=false --onlyChanged --watch --runInBand --no-cache",
"start:watch": "npm-run-all --parallel build:watch start:nodemon",
"start:debug": "nodemon --inspect-brk=0.0.0.0 --ext css,js,njk --legacy-watch app/index.js",
"start:nodemon": "nodemon --inspect=0.0.0.0 --ext css,js,njk --legacy-watch app/index.js",
"jest": "jest"
},
"author": "Defra",
"license": "OGL-UK-3.0",
"dependencies": {
"@azure/identity": "^4.4.1",
"@azure/storage-blob": "^12.23.0",
"@hapi/boom": "^9.1.4",
"@hapi/catbox-redis": "^6.0.2",
"@hapi/cookie": "^11.0.2",
"@hapi/crumb": "^8.0.1",
"@hapi/hapi": "^20.1.5",
"@hapi/inert": "^6.0.5",
"@hapi/vision": "^6.1.0",
"@hapi/wreck": "^18.0.0",
"@hapi/yar": "^10.1.1",
"@ministryofjustice/frontend": "3.2.1",
"applicationinsights": "^2.9.6",
"ffc-ahwr-event-publisher": "1.0.2",
"ffc-messaging": "^2.10.1",
"form-data": "^4.0.1",
"govuk-frontend": "^5.8.0",
"hapi-pino": "11.0.1",
"http-status-codes": "^2.3.0",
"joi": "17.11.0",
"jquery": "^3.7.1",
"jsonwebtoken": "9.0.2",
"jwk-to-pem": "^2.0.5",
"nunjucks": "^3.2.3",
"pg-promise": "^11.5.5"
},
"overrides": {
"webdriverio": {
"puppeteer-core": "22.13.0"
},
"semver": "7.5.2"
},
"devDependencies": {
"@hapi/catbox-memory": "^5.0.1",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@testing-library/dom": "10.4.0",
"@testing-library/user-event": "14.5.2",
"@types/hapi__hapi": "^20.0.10",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.19",
"babel-jest": "^29.7.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "7.1.2",
"dotenv": "^16.0.3",
"global-jsdom": "25.0.0",
"html-webpack-plugin": "^5.5.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "^13.0.0",
"jest-when": "^3.5.2",
"jsdom": "25.0.1",
"mini-css-extract-plugin": "^2.5.3",
"msw": "2.7.0",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"parse-asn1": "5.1.7",
"pino-pretty": "^7.5.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.49.7",
"sass-loader": "^12.4.0",
"standard": "^16.0.4",
"webdriverio": "9.5.7",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"standard": {
"env": {
"jest": true
},
"globals": [
"$",
"browser"
],
"ignore": [
"app/frontend/dist/**/*.js",
"test/acceptance/**/*.js",
"test/acceptance/**/*.mjs",
"test/acceptance/**/*.cjs"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
}
}