-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 3.09 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 3.09 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
{
"name": "forms-designer",
"version": "3.0.643",
"private": true,
"description": "Defra forms designer repository",
"repository": {
"type": "git",
"url": "git+https://github.com/DEFRA/forms-designer.git"
},
"license": "OGL-UK-3.0",
"type": "module",
"workspaces": [
"model",
"designer"
],
"scripts": {
"build": "npm run build --workspaces",
"predev": "npm run build --workspace model",
"predev:debug": "npm run predev",
"dev": "npm run dev --workspace designer",
"dev:debug": "npm run dev:debug --workspace designer",
"format": "npm run format:check -- --write",
"format:check": "prettier --cache --cache-location .cache/prettier --cache-strategy content --check \"**/*.{cjs,js,jsx,json,md,mjs,scss,ts,tsx}\"",
"lint": "npm run lint:editorconfig && npm run lint:js && npm run lint:types",
"lint:editorconfig": "editorconfig-checker",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "eslint --cache --cache-location .cache/eslint --cache-strategy content --color \"**/*.{cjs,js,jsx,mjs,ts,tsx}\"",
"lint:scss": "stylelint --cache --cache-location .cache/stylelint --cache-strategy content --color --ignore-path .gitignore --max-warnings 0 \"**/*.scss\"",
"lint:types": "tsc --build tsconfig.json",
"prepare": "husky || true",
"start": "npm run start --workspace designer",
"test": "jest --color --coverage --verbose",
"test:changed": "jest --coverage --changedSince=origin/main --coverageReporters=text",
"test:since": "jest --coverage --coverageReporters=text --changedSince",
"test:uncommitted": "jest --coverage --onlyChanged --coverageReporters=text",
"test:watch": "jest --color --watch"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@hapi/hoek": "^11.0.7",
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.19.1",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.27.0",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-replace-import-extension": "^1.1.5",
"babel-plugin-transform-import-meta": "^2.3.2",
"editorconfig-checker": "^6.0.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest": "^28.14.0",
"eslint-plugin-jsdoc": "^51.4.1",
"global-jsdom": "^26.0.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"neostandard": "^0.12.2",
"postcss": "^8.4.49",
"postcss-scss": "^4.0.9",
"prettier": "^3.5.3",
"sortablejs": "^1.15.6",
"stylelint": "^16.20.0",
"stylelint-config-gds": "^2.0.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.56.1"
},
"overrides": {
"react-router-dom": "^6.30.3",
"serialize-javascript": ">=7.0.3"
},
"engines": {
"node": "^22.12.0",
"npm": ">=10.9.0 <11.6.4"
}
}