forked from Pinont/UIA-LABLAB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 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
{
"name": "bobinsight-monorepo",
"version": "1.0.0",
"private": true,
"description": "BobInsight - Interactive Function Flow Mapper for IBM Bob Hackathon 2026",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:frontend": "npm run dev --workspace=apps/frontend",
"dev:backend": "npm run dev --workspace=apps/backend",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"build": "npm run build --workspaces",
"build:frontend": "npm run build --workspace=apps/frontend",
"build:backend": "npm run build --workspace=apps/backend",
"test": "npm test --workspaces",
"lint": "npm run lint --workspaces",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules apps/*/dist apps/*/build"
},
"devDependencies": {
"concurrently": "^8.2.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"keywords": [
"function-flow",
"code-analysis",
"visualization",
"ibm-bob",
"hackathon"
],
"author": "BobInsight Team",
"license": "MIT",
"dependencies": {
"@types/node": "^25.8.0"
}
}