-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 1.28 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
{
"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 --no-cache --continue --filter=genetics",
"build:genetics": "turbo run build --filter=genetics",
"dev:platform": "turbo run dev --filter=platform",
"build:platform": "turbo run build --filter=platform",
"dev:platform:ppp": "turbo run dev-ppp --filter=platform",
"build:platform:ppp": "turbo run build-ppp --filter=platform",
"lint": "turbo run lint",
"lint:platform": "turbo run lint --filter=platform",
"format": "turbo run prettier:all",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "7.32.0",
"eslint-config-custom": "*",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^2.5.1",
"turbo": "^1.10.13"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --cache --fix",
"*.{ts,tsx,js,jsx,md}": "prettier --write"
}
}