forked from XGovFormBuilder/digital-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.64 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
{
"name": "digital-form-builder-mono",
"version": "2.0.0",
"description": "Mono repo for xgovformbuilder's designer, model and runner",
"repository": "https://github.com/XGovFormBuilder/digital-form-builder.git",
"author": "Jen <jen+git@cautionyourblast.com>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16"
},
"workspaces": [
"model",
"runner",
"designer"
],
"scripts": {
"setup": "yarn && yarn build",
"build": "yarn workspaces foreach run build",
"build:dependencies": "yarn model build",
"lint": "yarn workspaces foreach run lint",
"test": "yarn workspaces foreach run test",
"fix-lint": "yarn workspaces foreach run fix-lint",
"watch": "yarn workspaces foreach -piva run watch",
"runner": "yarn workspace @xgovformbuilder/runner",
"designer": "yarn workspace @xgovformbuilder/designer",
"model": "yarn workspace @xgovformbuilder/model",
"test-cov": "yarn workspaces foreach run test-cov",
"runner:start": "yarn workspace @xgovformbuilder/runner start",
"type-check": "yarn workspaces foreach run tsc --noEmit",
"type-check:watch": "yarn workspaces foreach run type-check --watch",
"generate-architecture-diagrams": "concurrently 'npx arkit -c ./docs/designer/arkit.json' 'npx arkit -c ./docs/model/arkit.json' 'npx arkit -c ./docs/runner/arkit.json'"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/eslint-parser": "^7.11.3",
"@babel/eslint-plugin": "^7.11.3",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.12.7",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"babel-eslint": "^11.0.0-beta.2",
"concurrently": "^5.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-workspaces": "^1.0.10",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"magic-string": "^0.25.7",
"prettier": "2.1.2",
"typedoc": "^0.20.36",
"typescript": "^4.1.3"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"govuk-frontend": "^4.3.1",
"hmpo-components": "^5.2.1"
},
"resolutions": {
"braces": "2.3.1",
"pathval": "1.1.1",
"y18n": "4.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{ts,tsx,js,jsx}": "eslint --fix"
}
}