-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 2.72 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
89
90
91
92
93
94
{
"name": "beis-spl-eligibility-tool",
"version": "0.0.1",
"private": true,
"license": "MIT",
"engines": {
"node": ">18.0.0",
"npm": ">8.5"
},
"scripts": {
"compile": "grunt generate-assets",
"clean": "grunt clean",
"dev": "grunt",
"server": "node ./start.js",
"start": "npm run server",
"watch": "./node_modules/.bin/grunt watch",
"lint": "standard && stylelint '**/*.{scss,css}'",
"lint-sass": "stylelint '**/*.{scss,css}'",
"test": "standard && nyc node ./node_modules/mocha/bin/mocha \"!(node_modules)/**/*+(.test|.tests)\".js -r jsdom-global/register",
"test:watch": "chokidar app common test *.js --initial -c \"npm run test\"",
"test:start:a11y": "PA11Y_TEST=true NODE_ENV=test npm start &",
"test:a11y": "NODE_PATH=. mocha test/accessibility/a11y --timeout 15000"
},
"browserslist": [
"defaults or IE 11"
],
"dependencies": {
"@dvsa/cookie-manager": "^1.1.2",
"@emailjs/nodejs": "^5.0.2",
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.7",
"dlv": "^1.1.3",
"dset": "^3.1.4",
"express": "^4.21.1",
"express-session": "^1.18.1",
"govuk-frontend": "^5.7.1",
"jsdom": "^25.0.1",
"jsdom-global": "^3.0.2",
"lodash": "^4.17.19",
"memorystore": "^1.6.1",
"minimist": "^1.2.8",
"moment": "^2.29.4",
"morgan": "1.9.x",
"nodemailer": "^6.9.9",
"nunjucks": "^3.2.4",
"proxyquire": "^2.1.3",
"qs": "6.9.7",
"serve-favicon": "^2.5.0",
"staticify": "^3.3.3",
"throng": "4.0.x",
"winston": "^3.14.2",
"xml": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"autoprefixer": "^9.8.8",
"chai": "^4.5.0",
"chokidar-cli": "^3.0.0",
"envfile": "^3.0.0",
"eslint": "^6.0.1",
"grunt": "^1.5.2",
"grunt-babel": "^8.0.0",
"grunt-browserify": "^6.0.0",
"grunt-cli": "^1.4.3",
"grunt-concurrent": "^3.0.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^1.6.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^1.0.1",
"grunt-mocha-test": "^0.13.2",
"grunt-nodemon": "0.4.x",
"grunt-postcss": "^0.9.0",
"grunt-sass": "^3.1.0",
"mocha": "^10.7.3",
"nock": "^10.0.6",
"node-sass": "npm:sass@^1.74.1",
"nyc": "^17.0.0",
"pa11y": "5.3.0",
"puppeteer": "2.1.1",
"sinon": "^7.4.1",
"standard": "^17.1.2",
"std-mocks": "^2.0.0",
"stylelint": "^16.9.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.7.0",
"supertest": "^4.0.2"
}
}