-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 846 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 846 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
{
"name": "bridge-monorepo",
"private": true,
"version": "0.1.0",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.11.0",
"scripts": {
"build": "turbo run build",
"dev": "cross-env NODE_OPTIONS=--max-old-space-size=2048 turbo run dev --parallel",
"dev:pm": "cross-env NODE_OPTIONS=--max-old-space-size=2048 turbo run dev --filter=pm-web --filter=backend",
"dev:client": "cross-env NODE_OPTIONS=--max-old-space-size=2048 turbo run dev --filter=client-web --filter=backend",
"dev:admin": "cross-env NODE_OPTIONS=--max-old-space-size=2048 turbo run dev --filter=admin-web --filter=backend",
"lint": "turbo run lint",
"test": "turbo run test"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"cross-env": "^7.0.3",
"tailwindcss": "^4.1.18",
"turbo": "^2.5.8"
}
}