generated from x-govuk/govuk-eleventy-plugin
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
92 lines (92 loc) · 3.23 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
85
86
87
88
89
90
91
92
{
"name": "bat-design-history",
"version": "2.0.0",
"private": true,
"engines": {
"node": "20.11.0"
},
"description": "A history of the designs for the Find, Apply, Publish, Manage, Register and Support services",
"keywords": [
"becoming-a-teacher",
"govuk",
"11ty"
],
"author": "Department for Education: Becoming a teacher team",
"license": "MIT",
"homepage": "https://bat-design-history.netlify.app/",
"repository": "github:DFE-Digital/bat-design-history",
"bugs": "https://github.com/DFE-Digital/bat-design-history/issues",
"scripts": {
"prebuild": "rm -rf public",
"build:files": "eleventy",
"build:javascripts": "rollup --config etc/rollup.config.js",
"build:styles": "sass app/assets/styles/application.scss:public/assets/styles/application.css --style=compressed",
"build": "npm-run-all --serial build:*",
"prewatch": "npm run build",
"watch:files": "eleventy --serve --quiet",
"watch:javascripts": "rollup --config etc/rollup.config.js --watch",
"watch:styles": "sass app/assets/styles/application.scss:public/assets/styles/application.css --watch",
"watch": "npm-run-all --parallel watch:*",
"prestart": "npm run build",
"start": "npm run watch:files",
"dev": "npm run watch",
"lint:javascripts": "standard",
"lint:javascripts:fix": "standard --fix",
"lint:markdown": "markdownlint 'app/**/*.md' --disable MD013 MD024 MD028 MD033 MD041",
"lint:markdown:fix": "markdownlint 'app/**/*.md' --disable MD013 MD024 MD028 MD033 MD041 --fix",
"lint:styles": "stylelint 'app/assets/styles/**/*.scss' 'app/_components/**/*.scss'",
"lint:styles:fix": "stylelint 'app/assets/styles/**/*.scss' 'app/_components/**/*.scss' --fix",
"lint": "npm-run-all lint:javascripts lint:markdown",
"lint:fix": "npm-run-all lint:javascripts:fix lint:markdown:fix"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"accessible-autocomplete": "^3.0.1",
"govuk-frontend": "^5.8.0",
"http-server": "^14.1.1",
"luxon": "^3.5.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-image-figures": "^2.1.1",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-table-of-contents": "^0.9.0",
"npm-run-all": "^4.1.5",
"rollup": "^4.34.8",
"sass": "^1.85.0"
},
"devDependencies": {
"@stylistic/stylelint-config": "^2.0.0",
"@stylistic/stylelint-plugin": "^3.1.2",
"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": [
"!.eleventy.js"
]
},
"stylelint": {
"plugins": [
"@stylistic/stylelint-plugin"
],
"extends": [
"@stylistic/stylelint-config"
],
"rules": {
"@stylistic/number-leading-zero": null
}
}
}