-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.21 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.21 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
{
"name": "nhsuk-prototype-kit",
"version": "7.1.0",
"description": "Rapidly create HTML prototypes of NHS websites and services.",
"main": "app.js",
"scripts": {
"build": "gulp build",
"postinstall": "npm run build",
"start": "node app.js",
"test": "jest",
"test:ci": "jest --ci",
"prewatch": "gulp build",
"watch": "gulp",
"lint": "npm run lint:js && npm run lint:prettier",
"lint:fix": "npm run lint:js:fix && npm run lint:prettier:fix",
"lint:prettier": "prettier --cache --cache-location .cache/prettier --cache-strategy content --check .",
"lint:prettier:fix": "prettier --write .",
"lint:js": "eslint --cache --cache-location .cache/eslint --cache-strategy content --color --ignore-path .gitignore \"**/*.js\"",
"lint:js:fix": "npm run lint:js -- --fix"
},
"author": "https://github.com/nhsuk/",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@inquirer/prompts": "^7.9.0",
"body-parser": "^2.2.0",
"browser-sync": "^3.0.4",
"client-sessions": "^0.8.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-session": "^1.18.2",
"gulp": "^5.0.1",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-nodemon": "^2.5.0",
"gulp-rename": "^2.1.0",
"gulp-sass": "^6.0.1",
"http-proxy-middleware": "^3.0.5",
"lodash": "^4.17.21",
"nhsuk-frontend": "^10.1.0",
"nhsuk-prototype-kit": "^8.0.0-internal.0",
"nunjucks": "^3.2.4",
"path": "^0.12.7",
"plugin-error": "^2.0.1",
"portscanner": "^2.2.0",
"sass-embedded": "1.77.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsdoc": "^61.1.5",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"jest": "^30.1.3",
"prettier": "^3.6.2"
},
"engines": {
"node": "^20.9.0 || ^22.11.0"
}
}