-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 928 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 928 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
{
"name": "replimap-mono",
"version": "1.4.3",
"private": true,
"description": "RepliMap Monorepo - Cloud Infrastructure Visualization & Compliance",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"dev:web": "turbo run dev --filter=@replimap/web",
"dev:api": "turbo run dev --filter=@replimap/api",
"build:web": "turbo run build --filter=@replimap/web",
"build:api": "turbo run build --filter=@replimap/api",
"build:config": "turbo run build --filter=@replimap/config"
},
"devDependencies": {
"prettier": "^3.4.0",
"turbo": "^2.3.0",
"typescript": "^5.3.0"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}