-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 894 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 894 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
30
{
"name": "workflow-gen",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"dev:server": "turbo -F server dev",
"db:push": "turbo -F @workflow-gen/db db:push",
"db:studio": "turbo -F @workflow-gen/db db:studio",
"db:generate": "turbo -F @workflow-gen/db db:generate",
"db:migrate": "turbo -F @workflow-gen/db db:migrate",
"db:start": "turbo -F @workflow-gen/db db:start",
"db:watch": "turbo -F @workflow-gen/db db:watch",
"db:stop": "turbo -F @workflow-gen/db db:stop",
"db:down": "turbo -F @workflow-gen/db db:down"
},
"dependencies": {},
"devDependencies": {
"turbo": "^2.5.4"
},
"packageManager": "bun@1.2.21"
}