generated from x-govuk/govuk-eleventy-plugin
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
73 lines (73 loc) · 2.59 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
{
"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": "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.7.1",
"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.8.0",
"npm-run-all": "^4.1.5",
"rollup": "^4.29.1",
"sass": "^1.83.0"
},
"devDependencies": {
"markdownlint-cli": "^0.43.0",
"standard": "^17.1.2"
},
"standard": {
"ignore": [
"!.eleventy.js"
]
}
}