-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "x-govuk",
"version": "1.0.0",
"description": "A blog about collaboration across the UK government",
"homepage": "https://x-govuk.github.io",
"bugs": {
"url": "https://github.com/x-govuk/x-govuk.github.io/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/x-govuk/x-govuk.github.io.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",
"@11ty/eleventy-fetch": "^5.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.0",
"@x-govuk/govuk-eleventy-plugin": "^6.7.1"
},
"devDependencies": {
"@x-govuk/eslint-config": "^0.0.1",
"prettier": "^3.4.2"
},
"engines": {
"node": "^20.0.0"
},
"private": true,
"type": "module"
}