-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.11 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
{
"name": "alfira",
"version": "0.5.1",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"dev": "bun run check && bun run web:build && NODELINK_HOME=.nodelink bun --watch --env-file=.env packages/server/src/index.ts",
"dev:docker": "bun run check && bun run --filter @alfira/server build && docker compose -f docker-compose.dev.yml up --build",
"web:build": "bun run --filter @alfira/web build",
"discord:unregister-commands": "bun run packages/server/src/utils/unregisterCommands.ts",
"setup:nodelink": "bash scripts/setup-nodelink.sh",
"lint": "oxlint --deny-warnings .",
"lint:fix": "oxlint --fix --deny-warnings .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"check": "oxlint --deny-warnings . && oxfmt --check . && bun test",
"typecheck": "oxlint --deny-warnings .",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "1.3.14",
"knip": "6.29.0",
"lefthook": "2.1.10",
"oxfmt": "0.60.0",
"oxlint": "1.75.0",
"oxlint-tsgolint": "7.0.2001"
},
"packageManager": "bun@1.3.14"
}