-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.14 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.14 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "mono-medflow",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"buildWeb": "turbo run build --filter=web",
"buildMobile": "turbo run build --filter=mobile",
"dev": "turbo run dev",
"devWeb": "turbo run dev --filter=web",
"devMobile": "turbo run dev --filter=mobile",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"eslint": "^9.20.1",
"husky": "^8.0.3",
"lint-staged": "^13.0.0",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"turbo": "^2.4.0"
},
"packageManager": "pnpm@8.15.4",
"engines": {
"node": ">=18"
},
"turbo": {
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next/**",
"!.next/cache/**"
]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
}
}
},
"dependencies": {
"pnpm": "^10.10.0"
}
}