generated from DEFRA/ffc-template-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.65 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
{
"name": "ffc-ahwr-backoffice",
"version": "2.0.5",
"description": "Back office of the health and welfare of your livestock",
"homepage": "https://github.com/DEFRA/ffc-ahwr-backoffice",
"main": "app/index.js",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"pretest": "npm run test:lint",
"test": "jest --runInBand --forceExit --detectOpenHandles",
"test:watch": "jest --coverage=false --onlyChanged --watch --runInBand",
"test:watch:all": "npm run test:watch & npm run 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 build:watch & npm run 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/msal-node": "1.14.5",
"@hapi/boom": "10.00",
"@hapi/catbox-redis": "^6.0.2",
"@hapi/cookie": "^11.0.2",
"@hapi/crumb": "^8.0.1",
"@hapi/hapi": "^20.1.5",
"@hapi/inert": "^7.0.0",
"@hapi/vision": "^7.0.0",
"@hapi/wreck": "^18.0.0",
"@hapi/yar": "^10.1.1",
"@ministryofjustice/frontend": "^2.1.3",
"applicationinsights": "^2.9.6",
"govuk-frontend": "5.4.0",
"hapi-pino": "11.0.1",
"joi": "^17.6.0",
"jquery": "^3.7.0",
"node-cron": "^3.0.2",
"nunjucks": "^3.2.3",
"uuid": "^8.3.2",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@hapi/catbox-memory": "^5.0.1",
"cheerio": "^1.0.0-rc.10",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.6.0",
"dotenv": "^16.0.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "29.7.0",
"jest-junit": "^13.0.0",
"jest-when": "^3.5.2",
"mini-css-extract-plugin": "^2.5.3",
"nodemon": "^3.1.9",
"pino-pretty": "^8.1.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.49.7",
"sass-loader": "^12.4.0",
"standard": "^16.0.3",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"overrides": {
"@azure/msal-node": {
"jsonwebtoken": "9.0.0"
}
},
"standard": {
"env": {
"jest": true
},
"globals": [
"$",
"browser"
],
"ignore": [
"app/frontend/dist/**/*.js",
"test/acceptance/**/*.js",
"test/acceptance/**/*.mjs",
"test/acceptance/**/*.cjs"
]
},
"nodemonConfig": {
"ignore": [
"**/test-output/**"
]
}
}