This repository has been archived by the owner on Nov 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.17 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
{
"name": "design-history",
"version": "1.0.0",
"private": true,
"engines": {
"node": "^10.0.0"
},
"description": "A place for documenting GOV.UK service designs",
"keywords": [
"becoming-a-teacher",
"govuk",
"11ty"
],
"author": "Becoming a teacher team",
"license": "MIT",
"homepage": "https://design-history.herokuapp.com",
"repository": "github:DFE-Digital/govuk-design-history",
"bugs": "https://github.com/DFE-Digital/govuk-design-history/issues",
"scripts": {
"prebuild": "rm -rf public",
"build:files": "eleventy",
"build:javascripts": "rollup --config etc/rollup.config.js",
"build:styles": "node-sass app/_stylesheets -o public/stylesheets --include-path node_modules/govuk-frontend --include-path app",
"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": "node-sass app/_stylesheets -o public/stylesheets --include-path node_modules/govuk-frontend --watch",
"watch": "npm-run-all --parallel watch:*",
"dev": "npm run watch",
"prestart": "npm run build",
"start": "npm run watch:files",
"test": "standard"
},
"dependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"accessible-autocomplete": "^2.0.3",
"govuk-frontend": "^3.10.2",
"http-server": "^0.12.3",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^6.0.1",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-ins": "^3.0.0",
"markdown-it-mark": "^3.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-table-of-contents": "^0.5.1",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.35.1"
},
"devDependencies": {
"standard": "^16.0.3",
"webshot-node": "^0.18.2"
},
"standard": {
"ignore": [
"!.eleventy.js"
]
}
}