forked from opentargets/ot-ui-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "ot-ui-apps",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"bugs": {
"url": "https://github.com/opentargets/ot-ui-apps/issues",
"email": "[email protected]"
},
"scripts": {
"build": "turbo run build",
"build:no-cache": "turbo run build --parallel --no-cache",
"dev": "turbo run dev --parallel",
"dev:genetics": "turbo run dev --filter=genetics",
"build:genetics": "turbo run build --filter=genetics",
"dev:platform": "turbo run dev --filter=platform",
"build:platform": "turbo run build --filter=platform",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"prettier": "^2.5.1",
"turbo": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}