-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 3.06 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
{
"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.16.0 <21.0.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 [email protected] hof-build watch --env",
"debug": "node -r dotenv/config --inspect server.js",
"dev": "ALLOW_SKIP=true [email protected] hof-build watch --env",
"dev:api": "NODE_ENV=development ALLOW_SKIP=true [email protected] 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 [email protected] _mocha \"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": {
"axios": "^1.7.4",
"accessible-autocomplete": "^2.0.2",
"govuk-frontend": "^2.7.0",
"hof": "~21.1.0",
"ioredis": "^4.0.0",
"jquery": "^3.5.1",
"knex": "^3.1.0",
"lodash": "^4.17.15",
"moment": "2.29.4",
"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.0.0",
"pg": "^8.7.1",
"sqs-producer": "^1.6.3",
"typeahead-aria": "^1.0.4",
"url": "^0.11.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-shallow-deep-equal": "^1.4.6",
"eslint": "^7.32.0",
"eslint-config-hof": "^1.3.0",
"is-valid-domain": "^0.1.6",
"jquery": "^3.5.1",
"jsdom": "^16.4.0",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"puppeteer": "^22.5.0",
"reqres": "^3.0.1",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"supertest": "^5.0.0",
"supertest-session": "^4.1.0"
},
"resolutions": {
"underscore": "^1.12.1",
"hof/browserify/shell-quote": "^1.7.3"
},
"mocha": {
"reporter": "spec",
"require": "test/setup.js",
"recursive": "true",
"timeout": "12000"
}
}