-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.35 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.35 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
39
40
41
42
{
"name": "digital-prevention-services-portfolio",
"description": "The website for NHS Digital prevention services portfolio (DPSP).",
"homepage": "https://www.digital-prevention-services.nhs.uk",
"author": {
"name": "NHS England",
"url": "https://www.england.nhs.uk"
},
"repository": "NHSDigital/digital-prevention-services-portfolio",
"bugs": {
"url": "https://github.com/NHSDigital/digital-prevention-services-portfolio/issues"
},
"license": "MIT",
"scripts": {
"build": "eleventy --quiet",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint:scss": "stylelint '**/*.scss'",
"lint:scss:fix": "stylelint '**/*.scss' --fix",
"lint": "npm run lint:prettier && npm run lint:js && npm run lint:scss",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix && npm run lint:scss:fix",
"start": "eleventy --serve --quiet --port $PORT"
},
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@x-govuk/nhsuk-eleventy-plugin": "^1.1.2",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@x-govuk/eslint-config": "^0.0.1",
"prettier": "^3.8.1",
"stylelint": "^16.24.0",
"stylelint-config-gds": "^2.0.0"
},
"private": true,
"engines": {
"node": "^22",
"npm": "^11"
}
}