-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 903 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 903 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
31
{
"name": "sentrylike",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"build:cf": "bun run build && bun scripts/cf-assets.ts",
"typecheck": "turbo typecheck",
"lint": "oxlint",
"format": "oxfmt --write apps packages scripts",
"format:check": "oxfmt --check apps packages scripts",
"start": "bun apps/api/src/index.ts",
"demo:event": "bun scripts/send-test-event.ts",
"demo:transaction": "bun scripts/send-test-transaction.ts",
"test": "bun test --parallel",
"test:unit": "bun test --parallel apps/api/test/unit",
"test:integration": "bun test --parallel apps/api/test/integration"
},
"devDependencies": {
"oxfmt": "^0.61.0",
"oxlint": "^1.76.0",
"turbo": "^2.10.8"
},
"packageManager": "bun@1.3.14"
}