-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·67 lines (67 loc) · 2.12 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
{
"license": "MIT",
"engines": {
"node": ">=18.12.1"
},
"scripts": {
"start": "node server.js",
"start:dev": "hof-build watch --env",
"test": "yarn run test:lint && yarn run test:unit && yarn run test:ui-integration",
"test:accessibility": "_mocha \"test/_accessibility/**/*.spec.js\" --exit",
"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/_features/**/*.feature\" --require test/_features/test.setup.js --require \"test/_features/step_definitions/**/*.js\" --tags $TAGS",
"test:ui-integration": "_mocha \"test/_ui-integration/**/*.spec.js\" --exit",
"test:lint": "eslint . --config ./node_modules/eslint-config-hof/default.js",
"test:snyk": "snyk config set api=SNYK_TOKEN && snyk test",
"test:unit": "nyc _mocha \"test/_unit/**/*.spec.js\"",
"build": "hof-build",
"postinstall": "yarn run build"
},
"mocha": {
"reporter": "spec",
"require": "test/setup.js",
"recursive": "true",
"timeout": "6000"
},
"@comment dependencies": [
""
],
"dependencies": {
"hof": "~21.1.0",
"libphonenumber-js": "^1.8.4",
"lodash": "^4.17.21",
"notifications-node-client": "^8.0.0",
"puppeteer": "^22.4.1"
},
"devDependencies": {
"@cucumber/cucumber": "^7.2.1",
"@cucumber/pretty-formatter": "^1.0.0-alpha.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"eslint": "^7.30.0",
"eslint-config-hof": "^1.2.1",
"jquery": "^3.5.1",
"jsdom": "^16.4.0",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"pa11y": "^8.0.0",
"playwright": "^1.12.3",
"proxyquire": "^2.1.3",
"sinon": "^9.2.0",
"sinon-chai": "^3.5.0",
"snyk": "^1.683.0",
"supertest": "^5.0.0",
"supertest-session": "^4.1.0"
},
"resolutions": {
"underscore": "^1.12.1"
},
"name": "refugee-integration-loan",
"version": "1.0.0",
"main": "index.js",
"keywords": [],
"author": "",
"description": ""
}