-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.06 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
{
"name": "BRP",
"version": "6.0.0",
"main": "app.js",
"description": "A Home Office application for Biometric Residence Permit covering lost and stolen, error on card and delivery error services.",
"license": "GPL-2.0",
"engines": {
"node": ">=24.18.0 <25.0.0"
},
"scripts": {
"start": "node server.js",
"start:dev": "hof-build watch",
"dev": "NODE_ENV=development hof-build watch --env",
"test": "yarn run test:lint && yarn run test:unit",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"test:unit": "nyc _mocha \"test/_unit/**/*.spec.js\"",
"test:acceptance": "TAGS=\"${TAGS:=@feature}\" npm run test:cucumber",
"test:acceptance_browser": "ACCEPTANCE_WITH_BROWSER=true TAGS=\"${TAGS:=@feature}\" yarn run test:cucumber",
"test:cucumber": "cucumber-js -f pretty \"test/_features/**/*.feature\" --require test/_features/test.setup.js --require \"test/_features/step_definitions/**/*.js\" --tags $TAGS",
"build": "hof-build",
"postinstall": "yarn run build",
"mail:dev": "docker run --rm -d -p 1080:1080 -p 1025:1025 maildev/maildev"
},
"author": "HomeOffice",
"dependencies": {
"accessible-autocomplete": "^3.0.1",
"express": "^5.2.1",
"hof": "~24.4.0",
"hogan.js": "^3.0.2",
"hot-shots": "^11.4.0",
"i18n-future": "^2.0.1",
"jquery": "^4.0.0",
"lodash": "^4.18.1",
"moment": "2.30.1",
"moment-business": "^3.0.1",
"nodemailer": "^9.0.3",
"underscore": "^1.13.8",
"winston": "^3.19.0"
},
"devDependencies": {
"@cucumber/cucumber": "^13.1.0",
"chai": "^6.2.2",
"debug": "^4.4.3",
"eslint": "^8.57.0",
"eslint-config-hof": "^1.3.4",
"install": "^0.13.0",
"mocha": "^11.7.6",
"nyc": "^18.0.0",
"parallelshell": "^3.0.2",
"playwright": "^1.61.1",
"proxyquire": "^2.1.3",
"sinon": "^22.0.0",
"sinon-chai": "^4.0.1"
},
"mocha": {
"reporter": "spec",
"require": "test/setup.js",
"recursive": "true",
"timeout": "6000"
},
"resolutions": {
"serialize-javascript": "^7.0.7"
}
}