-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
29 lines (29 loc) · 1.12 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
{
"name": "datagateway",
"private": true,
"version": "2.0.0",
"workspaces": [
"packages/*"
],
"dependencies": {
"husky": "8.0.1"
},
"resolutions": {
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0"
},
"scripts": {
"build": "yarn workspaces foreach --interlaced --verbose --parallel --jobs 3 --exclude datagateway-common run build",
"lint": "yarn workspaces foreach --interlaced --verbose --parallel --jobs 4 run lint:js",
"tsc": "yarn workspace datagateway-common tsc",
"test": "yarn test:unit && yarn test:e2e",
"test:unit": "yarn workspaces foreach --interlaced --verbose --parallel --jobs 4 --exclude datagateway run test --runInBand",
"test:e2e": "yarn workspaces foreach --interlaced --verbose --parallel --jobs 3 run e2e",
"datagateway-dataview": "yarn workspace datagateway-dataview start",
"datagateway-download": "yarn workspace datagateway-download start",
"datagateway-search": "yarn workspace datagateway-search start",
"postinstall": "husky install"
},
"packageManager": "[email protected]"
}