-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 2.41 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
{
"name": "itmat-broker",
"private": true,
"license": "MIT",
"scripts": {
"prepare": "husky install",
"postinstall": "husky install",
"preinstall": "node ./scripts/hintYarn.js",
"start": "lerna run --stream --parallel --scope itmat-commons --scope itmat-job-executor --scope itmat-interface --scope itmat-ui-react start",
"start:ui": "lerna run --stream --scope itmat-ui-react start",
"start:interface": "lerna run --stream --scope itmat-interface start",
"start:executor": "lerna run --stream --scope itmat-job-executor start",
"build": "lerna run --stream --ignore itmat-docker build",
"build:noui": "lerna run --stream --ignore itmat-docker --ignore itmat-ui-react build",
"dockerise": "yarn run build:noui && lerna run --stream --scope itmat-docker build",
"setupDatabase": "lerna run --scope itmat-setup setup",
"test": "lerna run --no-bail --concurrency 1 --stream --scope itmat-interface --scope itmat-job-executor --scope itmat-commons test",
"lint": "lerna run --no-bail --stream lint",
"lint:fix": "lerna run --no-bail --stream lint:fix",
"clean": "lerna run clean",
"publish": "lerna run tsc && lerna publish",
"test:unit": "lerna run --no-bail --concurrency 1 --stream --scope itmat-interface test"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"mongodb-memory-server",
"mongodb-memory-server/**",
"**/mongodb-memory-server",
"**/mongodb-memory-server/**"
]
},
"devDependencies": {
"@babel/core": "7.16.12",
"@babel/preset-env": "7.16.11",
"@babel/eslint-parser": "7.16.5",
"@babel/eslint-plugin": "7.16.5",
"@types/jest": "27.4.0",
"eslint-config-react-app": "7.0.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.0.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "7.0.4",
"jest-environment-node": "27.4.6",
"lerna": "4.0.0",
"typescript": "4.3.2",
"webpack": "5.67.0",
"webpack-cli": "4.9.2"
},
"eslintConfig": {
"extends": "./config/eslint.config.js"
}
}