-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.07 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.07 KB
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": "3.0.0",
"type": "module",
"workspaces": [
"packages/*"
],
"dependencies": {
"husky": "9.1.7"
},
"resolutions": {
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7"
},
"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 --watch=false",
"test:e2e": "yarn workspaces foreach --interlaced --verbose --parallel --jobs 3 run e2e",
"datagateway-dataview": "yarn workspace datagateway-dataview dev",
"datagateway-download": "yarn workspace datagateway-download dev",
"datagateway-search": "yarn workspace datagateway-search dev",
"postinstall": "husky"
},
"packageManager": "yarn@3.8.7"
}