-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.69 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
{
"name": "forms-designer",
"version": "3.0.395",
"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 --ignore-path .gitignore \"**/*.{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:watch": "jest --color --watch"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/eslint": "^8.56.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-replace-import-extension": "^1.1.4",
"babel-plugin-transform-import-meta": "^2.3.2",
"editorconfig-checker": "^6.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"global-jsdom": "^25.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"stylelint": "^16.12.0",
"stylelint-config-gds": "^2.0.0",
"typescript": "^5.7.2"
},
"engines": {
"node": "^22.11.0",
"npm": "^10.9.0"
}
}