-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 KB
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
{
"name": "govuk-design-history",
"version": "2.0.0",
"description": "A template for a place for documenting GOV.UK service designs",
"keywords": [
"design-history",
"government",
"govuk"
],
"license": "MIT",
"scripts": {
"prebuild": "rimraf _site",
"build": "eleventy",
"start": "eleventy --serve --quiet",
"start:gh-pages": "GITHUB_ACTIONS=true eleventy --serve --quiet",
"preserve": "npm run build",
"serve": "http-server ./_site",
"test": "standard",
"test:gh-pages": "GITHUB_ACTIONS=true GITHUB_REF=\"refs/heads/main\" npm run build && mkdir -p _site/extract-alpha && cp -rp _site/* _site/extract-alpha/ && GITHUB_ACTIONS=true GITHUB_REF=\"refs/heads/main\" http-server ./_site"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@x-govuk/govuk-eleventy-plugin": "^8.0.2",
"govuk-frontend": "^5.14.0",
"http-server": "^14.1.1",
"rimraf": "^6.0.0",
"sass": "^1.80.5"
},
"devDependencies": {
"standard": "^17.1.0",
"webshot-node": "^0.18.2"
},
"private": true,
"engines": {
"node": ">=22"
},
"type": "module"
}