This repository has been archived by the owner on Feb 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.62 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
{
"name": "itt-mentoring-beta-prototype",
"description": "A prototype service for schools to claim funding for their general mentor training",
"engines": {
"node": "20.11.0"
},
"scripts": {
"generate-data": "node ./scripts/generate-data.js",
"postinstall": "npm run generate-data",
"dev": "govuk-prototype-kit dev",
"serve": "govuk-prototype-kit serve",
"start": "govuk-prototype-kit start",
"lint:markdown": "markdownlint 'app/content/**/*.md' --disable MD013",
"lint:markdown:fix": "markdownlint 'app/content/**/*.md' --disable MD013 --fix",
"lint:scripts": "standard",
"lint:scripts:fix": "standard --fix",
"lint:styles": "stylelint 'app/assets/sass/**/*.scss' 'app/views/_components/**/*.scss'"
},
"dependencies": {
"@x-govuk/govuk-prototype-filters": "^1.4.4",
"connect-flash": "^0.1.1",
"csv-string": "^4.1.1",
"csv-writer": "^1.6.0",
"govuk-frontend": "^5.8.0",
"govuk-prototype-kit": "13.16.2",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"marked": "^15.0.7",
"marked-gfm-heading-id": "^4.1.1",
"multer": "^1.4.5-lts.1",
"numeral": "^2.0.6",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"rimraf": "^6.0.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"markdownlint-cli": "^0.44.0",
"standard": "^17.1.2",
"stylelint": "^16.14.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-order": "^6.0.4"
},
"standard": {
"ignore": [
"app/assets/javascripts/**/*.js",
"app/views/_components/**/*.js"
]
}
}