-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.41 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.41 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "nhsuk-prototype-kit",
"version": "8.1.0",
"description": "Rapidly create HTML prototypes of NHS services",
"type": "module",
"main": "lib/index.js",
"scripts": {
"start": "npm start --workspace testapp",
"test": "node --test",
"test:ci": "node --test",
"lint:prettier": "prettier --cache --cache-location .cache/prettier --cache-strategy content --check .",
"lint:prettier:fix": "prettier --write .",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:types": "tsc --build tsconfig.json --pretty",
"lint": "npm run lint:types && npm run lint:js && npm run lint:prettier",
"lint:fix": "npm run lint:js:fix && npm run lint:prettier:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nhsuk/nhsuk-prototype-kit-package.git"
},
"bugs": {
"url": "https://github.com/nhsuk/nhsuk-prototype-kit-package/issues"
},
"author": {
"name": "NHS England",
"url": "https://www.england.nhs.uk"
},
"contributors": [
{
"name": "Frankie Roberto"
}
],
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"body-parser": "^2.2.1",
"browser-sync": "^3.0.4",
"cookie-parser": "^1.4.7",
"esbuild": "^0.27.3",
"esbuild-clean-plugin": "^2.0.0",
"esbuild-sass-plugin": "^3.3.1",
"express-flash": "^0.0.2",
"express-session": "^1.19.0",
"http-proxy-node16": "^1.0.6",
"nodemon": "^3.1.14",
"portscanner": "^2.2.0",
"sass-embedded": "^1.98.0",
"wait-on": "^9.0.4"
},
"peerDependencies": {
"express": "^5.2.0",
"nhsuk-frontend": "^10.3.0 || >=11.0.0-preview || >=11.0.0-internal || >=11.0.0-beta",
"nunjucks": "^3.2.4"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^9.39.4",
"@eslint/markdown": "^7.5.1",
"@types/body-parser": "^1.19.6",
"@types/browser-sync": "^2.29.1",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^5.0.6",
"@types/express-flash": "^0.0.5",
"@types/express-session": "^1.18.2",
"@types/nunjucks": "^3.2.6",
"@types/portscanner": "^2.1.4",
"@types/wait-on": "^5.3.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-es-x": "^9.5.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.2.1",
"express": "^5.2.1",
"globals": "^17.4.0",
"nhsuk-frontend": "^10.4.2",
"nunjucks": "^3.2.4",
"prettier": "^3.8.1",
"supertest": "7.2.2",
"typed-query-selector": "^2.12.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"files": [
"lib",
"!lib/**/*.test.js",
"!lib/**/test-templates"
],
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs",
"default": "./lib/index.js"
},
"./middleware": "./lib/middleware/index.js",
"./middleware/*": "./lib/middleware/*",
"./nunjucks-filters": "./lib/nunjucks-filters/index.js",
"./nunjucks-filters/*": "./lib/nunjucks-filters/*",
"./utils": "./lib/utils/index.js",
"./utils/*": "./lib/utils/*",
"./config": "./lib/nhsuk-prototype-kit.config.js",
"./package.json": "./package.json"
},
"workspaces": [
".",
"testapp"
],
"engines": {
"node": "^22.16.0 || ^24.11.0",
"npm": "^11.6.1 <11.6.3 || ^11.6.4"
}
}