-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 993 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 993 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
{
"name": "data-viz-tool",
"private": true,
"workspaces": [
"packages/shared",
"packages/nodes",
"packages/backend",
"packages/frontend",
"packages/druidjs"
],
"scripts": {
"build": "lerna run build",
"build-nodes": "npm run build --workspace=@data-viz-tool/nodes && npm i --workspace=@data-viz-tool/backend && npm run build --workspace=@data-viz-tool/backend && npm i --workspace=@data-viz-tool/frontend && npm i --workspace=@data-viz-tool/frontend",
"start": "lerna run start --stream",
"start:frontend": "npm run start --workspace=@data-viz-tool/frontend",
"start:backend": "npm run start --workspace=@data-viz-tool/backend",
"dev:backend": "npm run dev --workspace=@data-viz-tool/backend",
"test": "lerna run test",
"dev": "concurrently --names \"backend,frontend\" --prefix-colors \"blue,green\" \"npm:dev:backend\" \"npm:start:frontend\""
},
"devDependencies": {
"concurrently": "^6.2.0",
"lerna": "^4.0.0"
}
}