generated from x-govuk/govuk-design-history-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.26 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
{
"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 node_modules/nhsuk-frontend/package --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 --include-path node_modules/nhsuk-frontend/package --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.0",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@rollup/plugin-commonjs": "^13.0.1",
"@rollup/plugin-node-resolve": "^8.4.0",
"accessible-autocomplete": "^2.0.3",
"acorn": "^8.0.2",
"govuk-frontend": "^3.7.0",
"http-server": "^0.12.3",
"lodash": "^4.17.19",
"luxon": "^1.21.3",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^5.2.5",
"markdown-it-deflist": "^2.0.3",
"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.4.4",
"nhsuk-frontend": "^4.0.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.21.0"
},
"devDependencies": {
"standard": "^14.3.1",
"webshot-node": "^0.18.2"
}
}