-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "govuk-design-history",
"version": "1.0.0",
"description": "A design history for your GOV.UK service",
"homepage": "https://x-govuk.github.io/govuk-design-history",
"bugs": {
"url": "https://github.com/x-govuk/govuk-design-history/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/x-govuk/govuk-design-history.git"
},
"scripts": {
"build": "eleventy --quiet",
"start": "eleventy --serve --quiet",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint": "npm run lint:prettier && npm run lint:js",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix"
},
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@x-govuk/govuk-eleventy-plugin": "^6.0.0"
},
"devDependencies": {
"@x-govuk/eslint-config": "^0.0.1",
"prettier": "^3.2.4"
},
"engines": {
"node": ">=20.11"
},
"private": true,
"type": "module"
}