-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.05 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "modern-slavery",
"description": "app for modern slavery",
"version": "1.1.0",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/UKHomeOffice/modern-slavery.git"
},
"engines": {
"node": ">=20.19.0"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/UKHomeOffice/modern-slavery/issues"
},
"homepage": "https://github.com/UKHomeOffice/modern-slavery#readme",
"license": "MIT",
"scripts": {
"start": "node server.js watch --env",
"start:dev": "ALLOW_SKIP=true SKIP_EMAIL=sas-hof-test@digital.homeoffice.gov.uk hof-build watch --env",
"debug": "node -r dotenv/config --inspect server.js",
"dev": "ALLOW_SKIP=true SKIP_EMAIL=sas-hof-test@digital.homeoffice.gov.uk hof-build watch --env",
"dev:api": "NODE_ENV=development ALLOW_SKIP=true SKIP_EMAIL=sas-hof-test@digital.homeoffice.gov.uk hof-build watch --env",
"test": "NODE_ENV=test yarn run test:unit && yarn run test:lint && yarn run test:ui-integration",
"test:ui-integration": "NODE_ENV=test ALLOW_SKIP=true SKIP_EMAIL=sas-hof-test@digital.homeoffice.gov.uk _mocha --require dotenv/config \"test/_ui-integration/**/*.spec.js\" --exit",
"test:unit": "NODE_ENV=test nyc _mocha \"test/_unit/**/*.spec.js\"",
"test:docker-acceptance": "env BROWSER_TYPE=remote _mocha --recursive acceptance-test/user-pathways",
"test:local-acceptance": "env BROWSER_TYPE=local _mocha --recursive acceptance-test/user-pathways",
"test:local-acceptance-demo": "env BROWSER_TYPE=local BROWSER_DEMO=true _mocha --recursive acceptance-test/user-pathways",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"build": "hof-build",
"postinstall": "yarn run build"
},
"dependencies": {
"@azure/service-bus": "^7.9.5",
"accessible-autocomplete": "^3.0.1",
"axios": "^1.17.0",
"bl": "^6.1.6",
"bottleneck": "^2.19.5",
"busboy": "^1.6.0",
"form-data": "^4.0.5",
"govuk-frontend": "^5.14.0",
"hof": "~23.1.0",
"ioredis": "^5.11.1",
"knex": "^3.2.10",
"lodash": "^4.18.1",
"moment": "2.30.1",
"ms-countries": "^1.0.0",
"ms-nationalities": "^1.0.1",
"ms-uk-cities-and-towns": "^2.0.2",
"ms-uk-local-authorities": "^2.2.3",
"ms-uk-police-forces": "^2.0.0",
"ms-uk-regions": "^2.1.1",
"notifications-node-client": "^8.4.0",
"pg": "^8.21.0",
"typeahead-aria": "^1.0.4",
"uuid": "^11.1.1"
},
"devDependencies": {
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-shallow-deep-equal": "^1.4.6",
"eslint": "^8.57.1",
"eslint-config-hof": "^1.3.4",
"is-valid-domain": "^0.1.6",
"jquery": "^4.0.0",
"jsdom": "^29.1.1",
"mocha": "^11.7.6",
"nyc": "^17.1.0",
"proxyquire": "^2.1.3",
"puppeteer": "^24.43.1",
"reqres": "^3.0.1",
"sinon": "^21.1.2",
"sinon-chai": "^3.7.0",
"supertest": "^7.2.2",
"supertest-session": "^5.0.1"
},
"mocha": {
"reporter": "spec",
"require": "test/setup.js",
"recursive": "true",
"timeout": "20000"
}
}