-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.89 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.89 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
42
43
44
45
46
{
"name": "flowgen",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"db:generate": "npm run generate --workspace=@automation/db",
"db:migrate": "npm run migrate --workspace=@automation/db",
"db:studio": "npm run studio --workspace=@automation/db",
"db:seed" : "npm run seed --workspace=@automation/db",
"client:dev": "npm run dev --workspace=@automation/client",
"client:build": "npm run build --workspace=@automation/client",
"client:start": "npm run start --workspace=@automation/client",
"codegen": "npm run codegen --workspace=@automation/client",
"codegen:check": "npm run codegen:check --workspace=@automation/client",
"server:dev": "npm run dev --workspace=@automation/server",
"server:build": "npm run build --workspace=@automation/server",
"server:start": "npm run start --workspace=@automation/server",
"worker:dev": "npm run dev --workspace=@automation/worker",
"processor:dev": "npm run dev --workspace=@automation/processor",
"worker:build": "npm run build --workspace=@automation/worker",
"processor:build": "npm run build --workspace=@automation/processor",
"build": "concurrently -n client,server,worker,processor -c blue,green,yellow,magenta \"npm run client:build\" \"npm run server:build\" \"npm run worker:build\" \"npm run processor:build\"",
"kafka:dev": "concurrently -n worker,processor -c green,yellow,magenta \"npm run worker:dev\" \"npm run processor:dev\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/KGLikith/FlowGen.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/KGLikith/FlowGen/issues"
},
"homepage": "https://github.com/KGLikith/FlowGen#readme",
"devDependencies": {
"concurrently": "^9.2.1"
}
}