-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.3 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
43
{
"name": "prevention-services-design-history",
"version": "1.0.0",
"description": "A record of design and research for NHS digital prevention services",
"homepage": "https://github.com/NHSDigital/prevention-services-design-history",
"keywords": [
"design-history",
"healthcare",
"nhsuk"
],
"license": "MIT",
"scripts": {
"build": "eleventy",
"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",
"prestart": "npm run build",
"start": "eleventy --serve --quiet",
"preserve": "npm run build",
"serve": "http-server ./_site"
},
"dependencies": {
"@11ty/eleventy": "^3.1.5",
"@x-govuk/nhsuk-eleventy-plugin": "^1.2.0",
"http-server": "^14.1.1"
},
"devDependencies": {
"@x-govuk/eslint-config": "^0.0.2",
"prettier": "^3.8.2",
"stylelint": "^16.26.1",
"stylelint-config-gds": "^2.0.0"
},
"private": true,
"engines": {
"node": "22.x"
},
"type": "module"
}