-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"name": "ctc",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"nohoist": [
"**/mobile-ctc/",
"**/mobile-ctc/**",
"**/tiny-invariant/",
"**/tiny-invariant/**",
"**/@elsa-health/emr/",
"**/@elsa-health/emr/**",
"**/dotenv/",
"**/zod/",
"**/jest/",
"**/jest/**",
"**/dacc-server/",
"**/dacc-server/**"
]
},
"scripts": {
"w": "yarn workspace",
"emr": "yarn w @elsa-health/emr",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"build-android": "turbo run android --parallel",
"coverage": "turbo run coverage",
"coverage:ci": "turbo run coverage:ci",
"clean": "yarn clean:turbo && yarn clean:watchman",
"clean:turbo": "turbo run clean && rm -rf node_modules && rm -rf yarn.lock",
"clean:watchman": "watchman watch-del-all && yarn cache clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"eslint-config-custom": "*",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"dependencies": {},
"packageManager": "[email protected]"
}