-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.55 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
{
"name": "hof-feedback-form",
"version": "1.0.0",
"description": "A feedback form for users of other HOF services to fill",
"main": "index.js",
"engines": {
"node": ">=24.18.0 <25.0.0"
},
"scripts": {
"start": "node server.js",
"test:ui-integration": "NODE_ENV=test _mocha \"test/_ui-integration/**/*.spec.js\" --exit",
"start:dev": "hof-build watch --env",
"start:dev:docker": "hof-build watch",
"build": "hof-build",
"postinstall": "hof-build",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"test:unit": "jest --verbose test/unit",
"bddgen": "bddgen",
"test:e2e": "bddgen && playwright test",
"test:e2e:headed": "bddgen && playwright test --headed",
"test:e2e:debug": "bddgen && playwright test --debug",
"test:e2e:report": "playwright show-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/hff.git"
},
"author": "HOF",
"license": "ISC",
"bugs": {
"url": "https://github.com/UKHomeOffice/hff/issues"
},
"homepage": "https://github.com/UKHomeOffice/hff#readme",
"dependencies": {
"hof": "~24.4.0",
"notifications-node-client": "^8.4.0"
},
"devDependencies": {
"@cucumber/cucumber": "^13.0.0",
"@playwright/test": "^1.61.1",
"@types/node": "^25.9.5",
"dotenv": "^17.4.2",
"eslint": "^8.57.0",
"eslint-config-hof": "^1.3.4",
"jest": "^30.4.2",
"playwright-bdd": "^9.2.0"
},
"resolutions": {
"axios": "1.18.0",
"js-yaml": "4.2.0",
"@babel/core": "7.29.6"
}
}