-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathpackage.json
90 lines (90 loc) · 3.3 KB
/
package.json
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
{
"name": "nhsuk-frontend",
"version": "9.3.0",
"description": "NHS.UK frontend contains the code you need to start building user interfaces for NHS websites and services.",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "gulp build docs:build --color --series",
"prestart": "npm run build",
"start": "gulp --color",
"lint": "npm run lint:js && npm run lint:css && npm run lint:prettier",
"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",
"lint:css": "stylelint --cache --cache-location .cache/stylelint --cache-strategy content --color --formatter verbose --ignore-path .gitignore \"**/*.{md,scss}\"",
"lint:css:fix": "npm run lint:css -- --fix",
"pretest": "npm run lint && npm run build",
"test": "npm run test:js",
"test:js": "jest --color --coverage",
"test:visual": "npm run test:visual:cli -- -- test --docker",
"test:visual:ref": "npm run test:visual:cli -- -- reference --docker",
"test:visual:interactive": "backstop --config backstop.config.js remote",
"test:visual:approve": "backstop --config backstop.config.js approve",
"test:visual:clean": "rm -rf tests/backstop/bitmaps_test/*",
"pretest:visual:cli": "npm run build",
"test:visual:cli": "concurrently \"npm start --ignore-scripts\" \"wait-on tcp:3000 && backstop --config backstop.config.js {@}\" --kill-others --passthrough-arguments --success first"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/eslint-parser": "^7.26.8",
"@babel/preset-env": "^7.26.9",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.1.3",
"backstopjs": "^6.3.25",
"browser-sync": "^3.0.3",
"concurrently": "^9.1.2",
"cssnano": "^7.0.6",
"del": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-es-x": "^8.4.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"glob": "^11.0.1",
"gulp": "^5.0.0",
"gulp-postcss": "^10.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^6.0.0",
"gulp-terser": "^2.1.0",
"gulp-zip": "^6.1.0",
"html-validate": "^9.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-puppeteer": "^11.0.0",
"nunjucks": "^3.2.4",
"plugin-error": "^2.0.1",
"postcss": "^8.5.2",
"postcss-markdown": "^1.3.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.5.1",
"puppeteer": "^24.2.1",
"sass-embedded": "^1.77.5",
"stylelint": "^16.14.1",
"stylelint-config-gds": "^2.0.0",
"stylelint-order": "^6.0.4",
"wait-on": "^8.0.2",
"webpack-stream": "^7.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"packages"
],
"repository": {
"type": "git",
"url": "git+/~https://github.com/nhsuk/nhsuk-frontend.git"
},
"homepage": "https://nhsuk.github.io/nhsuk-frontend/",
"bugs": {
"url": "/~https://github.com/nhsuk/nhsuk-frontend/issues"
},
"license": "MIT"
}