-
Notifications
You must be signed in to change notification settings - Fork 421
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 801 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 801 Bytes
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
{
"name": "ossinsight-monorepo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "pnpm --filter web dev",
"dev:web": "pnpm --filter web dev",
"dev:all": "turbo run dev --filter=web --filter=docs",
"dev:docs": "turbo run dev --filter=docs",
"start": "pnpm --filter web start",
"start:web": "pnpm --filter web start",
"start:all": "turbo run start --filter=web --filter=docs",
"start:docs": "turbo run start --filter=docs",
"lint": "turbo run lint",
"check-types": "turbo run check-types"
},
"devDependencies": {
"turbo": "^2.7.1",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@10.29.3",
"engines": {
"node": ">=20.9.0"
},
"pnpm": {
"overrides": {
"@tanstack/react-query": "^5.90.21"
}
}
}