-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.63 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
{
"name": "pierre",
"version": "0.40.6",
"private": true,
"license": "AGPL-3.0-only",
"author": "Charles-Henri ARNOULD <charnould@pierre-ia.org>",
"workspaces": [
"docs",
"server",
"desktop",
"customization"
],
"scripts": {
"------------------ GLOBAL ------------------": "------------------",
"dev:server": "bun --filter @pierre/server dev",
"dev:desktop": "bun --filter @pierre/desktop dev",
"lint": "bun run oxlint -c ./config/oxlint.jsonc . --fix --fix-suggestions --fix-dangerously",
"format": "bun run oxfmt -c ./config/oxfmt.jsonc",
"release": "bash config/release.sh",
"------------------ STAGING ------------------": "------------------",
"staging:logs": "bun --env-file=.env.staging run kamal app logs -c config/deploy.yml",
"staging:setup": "bun --env-file=.env.staging run kamal setup -c config/deploy.yml",
"staging:deploy": "bun --env-file=.env.staging run kamal deploy -c config/deploy.yml",
"staging:console": "bun --env-file=.env.staging run kamal app exec -i bash -c config/deploy.yml",
"------------------ PRODUCTION ------------------": "------------------",
"prod:logs": "bun --env-file=.env.production run kamal app logs -c config/deploy.yml",
"prod:setup": "bun --env-file=.env.production run kamal setup -c config/deploy.yml",
"prod:deploy": "bun --env-file=.env.production run kamal deploy -c config/deploy.yml",
"prod:console": "bun --env-file=.env.production run kamal app exec -i bash -c config/deploy.yml"
},
"devDependencies": {
"markdown-toc": "^1.2.0",
"oxfmt": "^0.57.0",
"oxlint": "^1.72.0",
"typescript": "^6.0.3"
}
}