-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.73 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.73 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
{
"name": "nhsuk-service-manual",
"version": "8.9.0",
"description": "NHS digital service manual",
"engines": {
"node": "^20.9.0 || ^22.11.0",
"npm": "^10.5.0"
},
"main": "app.js",
"scripts": {
"prebuild": "npm run clean",
"build": "NODE_ENV=${NODE_ENV:-production} webpack",
"clean": "del-cli public/**",
"lint": "npm run lint:js && npm run lint:css && npm run lint:prettier",
"lint:fix": "npm run lint:js:fix && npm run lint:css: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 --max-warnings 0 .",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:css": "stylelint --cache --cache-location .cache/stylelint --cache-strategy content --color --formatter verbose --ignore-path .gitignore --max-warnings 0 \"**/*.{md,scss}\"",
"lint:css:fix": "npm run lint:css -- --fix",
"nuke": "npm run clean && rm -rf node_modules/",
"start": "node .",
"pretest": "npm run lint && npm run build",
"test": "npm run test:js",
"test:js": "jest --color",
"watch": "concurrently --prefix none npm:watch:*",
"watch:build": "NODE_ENV=development npm run build -- --watch",
"watch:start": "NODE_ENV=development node --watch ."
},
"author": "https://github.com/nhsuk",
"repository": {
"type": "git",
"url": "https://github.com/nhsuk/nhsuk-service-manual.git"
},
"license": "MIT",
"dependencies": {
"@open-iframe-resizer/core": "^2.3.1",
"@prettier/sync": "^0.6.1",
"accessible-autocomplete": "^3.0.1",
"axios": "^1.13.6",
"basic-auth": "^2.0.1",
"browser-sync": "^3.0.4",
"cheerio": "^1.2.0",
"chokidar": "^3.6.0",
"compression": "^1.8.1",
"express": "^5.2.1",
"gray-matter": "^4.0.3",
"helmet": "^8.1.0",
"highlight.js": "^11.11.1",
"js-beautify": "^1.15.4",
"lunr": "^2.3.9",
"marked": "^17.0.5",
"nhsuk-frontend": "^10.4.2",
"nunjucks": "^3.2.4",
"outdent": "^0.8.0",
"slug": "^9.1.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@eslint/compat": "^2.0.3",
"@eslint/js": "^9.39.4",
"@eslint/markdown": "^7.5.1",
"@testing-library/jest-dom": "^6.9.1",
"autoprefixer": "^10.4.27",
"babel-jest": "^30.3.0",
"babel-loader": "^10.1.1",
"babel-plugin-transform-import-meta": "^2.3.3",
"concurrently": "^9.2.1",
"copy-webpack-plugin": "^14.0.0",
"cssnano": "^7.1.3",
"del-cli": "^7.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-es-x": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsdoc": "^62.8.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^7.2.1",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-environment-node": "^30.3.0",
"jsdom-testing-mocks": "^1.16.0",
"postcss": "^8.5.8",
"postcss-load-config": "^6.0.1",
"postcss-loader": "^8.2.1",
"postcss-markdown": "^1.3.1",
"postcss-scss": "^4.0.9",
"prettier": "^3.8.1",
"sass-embedded": "^1.98.0",
"sass-loader": "^16.0.7",
"stylelint": "^16.26.1",
"stylelint-config-gds": "^2.0.0",
"stylelint-order": "^8.1.1",
"typescript-eslint": "^8.57.2",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"webpack-manifest-plugin": "^6.0.1"
},
"files": [
"app",
"lib",
"middleware",
"public",
"app.js",
"!**/*.test.*"
]
}