-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
81 lines (81 loc) · 2.63 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
{
"name": "register-trainee-teachers-prototype",
"description": "A prototype for the ‘Register trainee teachers’ service by the Department for Education",
"version": "9.8.0",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start": "node start.js",
"lint:markdown": "markdownlint 'app/**/*.md' --disable MD013",
"lint:markdown:fix": "markdownlint 'app/**/*.md' --disable MD013 --fix",
"lint:javascripts": "standard",
"lint:javascripts:fix": "standard --fix",
"lint:styles": "stylelint 'app/assets/sass/**/*.scss' 'app/views/_components/**/*.scss'",
"lint:styles:fix": "stylelint 'app/assets/sass/**/*.scss' 'app/views/_components/**/*.scss' --fix",
"lint": "npm-run-all lint:javascripts lint:markdown lint:styles",
"lint:fix": "npm-run-all lint:javascripts:fix lint:markdown:fix lint:styles:fix"
},
"dependencies": {
"@faker-js/faker": "^9.0.0",
"@ministryofjustice/frontend": "^3.2.0",
"ansi-colors": "^4.1.1",
"basic-auth": "^2.0.0",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.14.1",
"browser-sync": "^3.0.2",
"client-sessions": "^0.8.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"cross-spawn": "^7.0.2",
"csv-string": "^4.0.1",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"express-session": "^1.17.2",
"fancy-log": "^2.0.0",
"govuk-frontend": "^5.5.0",
"gulp": "^5.0.0",
"gulp-nodemon": "^2.5.0",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^3.0.0",
"inquirer": "^8.2.6",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lunr": "^2.3.9",
"marked": "^15.0.3",
"marked-gfm-heading-id": "^4.1.1",
"moment": "^2.27.0",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.3",
"pluralize": "^8.0.0",
"portscanner": "^2.1.1",
"require-dir": "^1.0.0",
"rimraf": "^6.0.1",
"sass": "^1.77.8",
"string": "^3.3.3",
"sync-request": "^6.0.0",
"universal-analytics": "^0.5.3",
"uuid": "^11.0.3",
"weighted": "^1.0.0"
},
"devDependencies": {
"markdownlint-cli": "^0.43.0",
"standard": "^17.1.2",
"stylelint": "^16.11.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4"
},
"standard": {
"ignore": [
"app/assets/javascripts/auto-store-data.js",
"app/assets/javascripts/jquery-1.11.3.js",
"app/assets/javascripts/jquery-3.6.1.min.js",
"app/assets/javascripts/lunr-2.3.9.js",
"app/assets/javascripts/step-by-step-nav.js",
"app/assets/javascripts/stick-to-window-when-scrolling.js"
]
}
}