-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "govuk-fix-accessibility-mistakes",
"version": "1.0.0",
"description": "This is a project to show common mistakes and improvements for forms and other interactions designed using GOV.UK Frontend.",
"keywords": [
"govuk",
"accessibility"
],
"homepage": "https://github.com/x-govuk/govuk-accessibility-mistakes-forms/",
"bugs": {
"url": "https://github.com/x-govuk/govuk-accessibility-mistakes-forms/issues"
},
"license": "MIT",
"main": "eleventy.config.js",
"scripts": {
"prebuild": "rimraf _site",
"build": "eleventy",
"start": "eleventy --serve --quiet",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint:scss": "stylelint '**/*.scss'",
"lint:scss:fix": "stylelint '**/*.scss' --fix",
"lint": "npm run lint:prettier && npm run lint:js && npm run lint:scss",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix && npm run lint:scss:fix"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@x-govuk/govuk-eleventy-plugin": "^6.2.5",
"gray-matter": "^4.0.3",
"iframe-resizer": "^4.3.9",
"js-beautify": "^1.15.1",
"rimraf": "^6.0.0"
},
"devDependencies": {
"@x-govuk/eslint-config": "^0.0.1",
"prettier": "^3.1.0",
"stylelint": "^16.0.0",
"stylelint-config-gds": "^2.0.0",
"stylelint-order": "^6.0.4"
},
"private": true,
"engines": {
"node": "^20"
},
"type": "module"
}