This repository has been archived by the owner on Jan 4, 2023. It is now read-only.
forked from cabinetoffice/ova-alpha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.36 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
{
"name": "govuk-prototype-kit",
"description": "Rapidly create HTML prototypes of GOV.UK services",
"version": "12.1.1",
"private": true,
"engines": {
"node": ">=12.0.0 <17.0.0"
},
"scripts": {
"start": "node start",
"build": "node lib/build/generate-assets",
"serve": "node listen-on-port",
"lint": "standard",
"rapidtest": "jest --bail",
"cypress:open": "cypress open",
"test:heroku": "start-server-and-test 'npx --yes heroku local --port 3000' 3000 test:smoke",
"test:integration": "KIT_TEST_DIR=tmp/test-prototype start-server-and-test 'node cypress/scripts/run-from-release' 3000 'cypress run'",
"test:integration:package": "KIT_TEST_DIR=tmp/test-prototype-package start-server-and-test 'node cypress/scripts/run-as-package' 3000 'cypress run'",
"test:smoke": "cypress run --spec \"cypress/integration/0-smoke-tests/*\"",
"test": "jest && npm run lint"
},
"dependencies": {
"acorn": "^8.5.0",
"ansi-colors": "^4.1.1",
"body-parser": "^1.14.1",
"browser-sync": "^2.27.10",
"chokidar": "^3.5.3",
"client-sessions": "^0.8.0",
"cookie-parser": "^1.4.6",
"cross-spawn": "^7.0.2",
"del": "^6.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.13.0",
"fancy-log": "^1.3.3",
"fs-extra": "^10.0.1",
"govuk_frontend_toolkit": "^7.5.0",
"govuk_template_jinja": "^0.24.1",
"govuk-elements-sass": "^3.1.3",
"govuk-frontend": "^4.1.0",
"gray-matter": "^4.0.3",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"moment": "^2.29.4",
"nodemon": "^2.0.15",
"notifications-node-client": "^5.1.1",
"nunjucks": "^3.2.1",
"openid-client": "5.1.6",
"passport": "0.6.0",
"portscanner": "^2.1.1",
"require-dir": "^1.0.0",
"rsa-pem-to-jwk": "1.1.3",
"sass": "^1.49.10",
"sync-request": "^6.0.0",
"universal-analytics": "^0.5.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"cypress": "^10.3.1",
"eslint-plugin-cypress": "^2.12.1",
"standard": "^17.0.0"
},
"standard": {
"plugins": [
"cypress"
],
"env": {
"cypress/globals": true
},
"ignore": [
"/server.js",
"/__tests__/*",
"/cypress/*"
]
},
"jest": {
"testPathIgnorePatterns": [
"__tests__/spec/utils.js",
"/node_modules/",
"/tmp/"
]
}
}