-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.3 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
{
"name": "end-tenancy",
"version": "0.1.0",
"main": "index.js",
"description": "End Tenancy form",
"author": "HomeOffice",
"bugs": "https://github.com/UKHomeOffice/end-tenancy/issues",
"repository": {
"type": "git",
"url": "https://github.com/UKHomeOffice/end-tenancy"
},
"engines": {
"node": ">=18.12.1 <21.0.0"
},
"license": "./LICENSE",
"readme": "./README.md",
"scripts": {
"start": "node server.js",
"start:dev": "NODE_ENV=development hof-build watch",
"dev": "NODE_ENV=development hof-build watch --env",
"start:mock": "node server.js mock-notify",
"ci": "NODE_ENV=ci DISABLE_CSP=true [email protected] node server.js",
"test": "npm run test:lint && npm run test:unit",
"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 @cucumber/pretty-formatter \"test/_acceptance/features/*.feature\" --require test/_acceptance/test.setup.js --require \"test/_acceptance/step_definitions/**/*.js\" --tags $TAGS",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"test:snyk": "snyk config set api=SNYK_TOKEN && snyk test",
"build": "hof-build",
"postinstall": "npm run build"
},
"dependencies": {
"hof": "~21.1.0",
"hogan.js": "^3.0.2",
"is-pdf": "^1.0.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"mixwith": "^0.1.1",
"moment": "^2.29.4",
"notifications-node-client": "^8.0.0",
"typeahead-aria": "^1.0.4"
},
"devDependencies": {
"@cucumber/cucumber": "^8.5.0",
"@cucumber/pretty-formatter": "^1.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"eslint": "^7.32.0",
"eslint-config-hof": "^1.2.1",
"express": "^4.17.1",
"funkie": "^0.0.6",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"playwright": "^1.39.0",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"snyk": "^1.679.0"
},
"resolutions": {
"underscore": "^1.12.1"
},
"mocha": {
"reporter": "spec",
"require": "test/setup.js",
"recursive": "true",
"timeout": "6000"
}
}