-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.23 KB
/
package.json
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": "@turboremote/turboremote",
"version": "0.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"dev:api": "pnpm --filter @turboremote/api dev",
"dev:cli": "pnpm --filter turboremote dev",
"dev:server": "pnpm --filter @turboremote/server dev",
"dev:website": "pnpm --filter @turboremote/website dev",
"build:api": "pnpm --filter @turboremote/api build",
"build:cli": "pnpm --filter turboremote build",
"build:lib": "pnpm --filter @turboremote/lib build",
"build:request": "pnpm --filter @turboremote/request build",
"build:server": "pnpm --filter @turboremote/server build",
"build:website": "pnpm --filter @turboremote/website build",
"start:api": "pnpm --filter @turboremote/api start",
"start:server": "pnpm --filter @turboremote/server start",
"start:website": "pnpm --filter @turboremote/website start",
"deploy:api": "flyctl deploy --config ./fly.api.toml",
"deploy:website": "flyctl deploy --config ./fly.website.toml --dockerfile ./apps/website/Dockerfile",
"deploy:server": "flyctl deploy --config ./fly.server.toml",
"dump:db-schema": "pg_dump -s turboremote > db-schema.sql"
},
"keywords": [],
"author": "",
"license": "ISC"
}