This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
forked from DEFRA/digital-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.56 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
{
"name": "digital-form-builder-mono",
"version": "2.0.0",
"description": "Mono repo for xgovformbuilder's designer, engine, model and runner",
"repository": "https://github.com/XGovFormBuilder/digital-form-builder.git",
"author": "Jen <jen+git@cautionyourblast.com>",
"license": "MIT",
"private": true,
"workspaces": [
"model",
"engine",
"runner",
"designer"
],
"scripts": {
"setup": "yarn && yarn build && yarn flow-mono create-symlinks && yarn flow-mono install-types && yarn flow-mono create-stubs",
"build": "yarn workspaces foreach run build",
"build:dependencies": "yarn model build && yarn engine build",
"lint": "yarn workspaces foreach run lint",
"test": "yarn workspaces foreach run test",
"fix-lint": "yarn workspaces foreach run fix-lint",
"flow": "yarn workspaces foreach -piva exec flow",
"watch": "yarn workspaces foreach -piva run watch",
"runner": "yarn workspace @xgovformbuilder/runner",
"designer": "yarn workspace @xgovformbuilder/designer",
"engine": "yarn workspace @xgovformbuilder/engine",
"model": "yarn workspace @xgovformbuilder/model",
"test-cov": "yarn workspaces foreach run test-cov"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/eslint-parser": "^7.11.3",
"@babel/eslint-plugin": "^7.11.3",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-proposal-export-default-from": "^7.10.1",
"@babel/plugin-proposal-private-methods": "^7.10.1",
"@babel/plugin-proposal-private-property-in-object": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-flow": "^7.10.4",
"@babel/register": "^7.10.5",
"@hapi/code": "^8.0.1",
"@hapi/lab": "^23.0.0",
"babel-eslint": "^11.0.0-beta.2",
"concurrently": "^5.3.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-workspaces": "^1.0.10",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"flow-bin": "0.131.0",
"flow-mono-cli": "^1.5.3",
"flow-typed": "^3.2.1",
"magic-string": "^0.25.7",
"node-sass": "^4.14.1",
"resolve": "^1.17.0",
"rollup": "^2.25.0"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"govuk-frontend": "^3.8.1"
}
}