-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.86 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.86 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
{
"name": "dtos-manage-breast-screening",
"type": "module",
"files": [
"manage_breast_screening",
"!**/*.test.*"
],
"scripts": {
"breast-diagram": "node manage_breast_screening/assets/breast-diagram/process-exported-svg.js",
"compile": "npm run compile:css && npm run compile:js",
"compile:css": "sass --color --embed-sources --load-path=node_modules --quiet-deps manage_breast_screening/assets/sass/main.scss manage_breast_screening/assets/compiled/css/main.css",
"postcompile:css": "postcss --map --dir manage_breast_screening/assets/compiled/css --ext .min.css manage_breast_screening/assets/compiled/css/main.css",
"compile:js": "rollup -c rollup.config.js --sourcemap",
"lint": "npm run lint:js && npm run lint:types && npm run lint:prettier",
"lint:js": "eslint --cache --cache-location .cache/eslint --cache-strategy content --color --max-warnings 0 .",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:prettier": "prettier --cache --cache-location .cache/prettier --cache-strategy content --color --check .",
"lint:prettier:fix": "prettier --write .",
"lint:types": "tsc --build tsconfig.json --pretty",
"test": "jest --color",
"prewatch": "npm run compile:css --ignore-scripts",
"watch": "concurrently \"npm:compile:css -- --update --watch\" \"npm:postcompile:css -- --watch\" \"npm:compile:js -- --watch\" --prefix none"
},
"dependencies": {
"nhsuk-frontend": "^10.4.2"
},
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"@eslint/compat": "^2.0.3",
"@eslint/js": "^9.39.4",
"@eslint/markdown": "^7.5.1",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/eslint": "^9.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.5.0",
"autoprefixer": "^10.4.27",
"babel-jest": "^30.3.0",
"concurrently": "^9.2.1",
"cssnano": "^7.1.4",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-es-x": "^9.6.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-junit": "^16.0.0",
"jsdom": "^29.0.2",
"outdent": "^0.8.0",
"postcss": "^8.5.8",
"postcss-cli": "^11.0.1",
"prettier": "^3.8.1",
"rollup": "^4.60.1",
"sass-embedded": "^1.99.0",
"typed-query-selector": "^2.12.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"engines": {
"node": "^24.11.0",
"npm": "^11.6.1"
}
}