-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.05 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
{
"name": "govuk-prototype-kit",
"description": "Rapidly create HTML prototypes of GOV.UK services",
"version": "12.1.0",
"private": true,
"engines": {
"node": ">=12.0.0 <17.0.0"
},
"scripts": {
"start": "node start.js",
"lint": "standard",
"rapidtest": "jest --bail",
"cypress:open": "cypress open",
"test:integration": "start-server-and-test 3000 'cypress run'",
"test:integration:edge": "start-server-and-test 3000 'cypress run --browser edge'",
"test:integration:chrome": "start-server-and-test 3000 'cypress run --browser chrome'",
"test:integration:electron": "start-server-and-test 3000 'cypress run --browser electron'",
"test": "gulp generate-assets && jest && npm run lint"
},
"dependencies": {
"acorn": "^8.5.0",
"ansi-colors": "^4.1.1",
"body-parser": "^1.14.1",
"browser-sync": "^2.11.1",
"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",
"govuk-elements-sass": "^3.1.3",
"govuk-frontend": "^4.1.0",
"govuk_frontend_toolkit": "^7.5.0",
"govuk_template_jinja": "^0.24.1",
"gray-matter": "^4.0.3",
"gulp": "^4.0.2",
"gulp-nodemon": "^2.2.1",
"gulp-sass": "^5.0.0",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"marked": "^4.0.10",
"notifications-node-client": "^5.1.0",
"nunjucks": "^3.2.1",
"portscanner": "^2.1.1",
"require-dir": "^1.0.0",
"sass": "^1.49.10",
"sync-request": "^6.0.0",
"universal-analytics": "^0.4.16",
"uuid": "^8.3.2"
},
"optionalDependencies": {
"cypress": "^9.6.0",
"eslint-plugin-cypress": "^2.12.1",
"glob": "^7.1.4",
"jest": "^27.3.1",
"standard": "^14.3.3",
"start-server-and-test": "^1.14.0",
"supertest": "^6.1.6",
"wait-on": "^6.0.1"
},
"standard": {
"plugins": [
"cypress"
],
"env": {
"cypress/globals": true
}
},
"jest": {
"testRunner": "jest-jasmine2"
}
}