-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 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
38
39
40
41
42
43
44
45
{
"name": "dataforge",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"dev": "concurrently -k -n backend,frontend -c blue,green \"bun --cwd backend dev\" \"bun --cwd frontend dev\"",
"format": "bunx biome format --write .",
"lint": "bunx biome lint",
"check": "bunx biome check",
"check:fix": "bunx biome check --write .",
"mcpi": "bunx @modelcontextprotocol/inspector",
"tsc": "bun -F '*' typecheck",
"typecheck": "bun -F '*' typecheck"
},
"workspaces": {
"packages": [
"frontend",
"backend"
],
"catalog": {
"@elysiajs/eden": "1.4.4",
"@tsconfig/bun": "1.0.9",
"@types/bun": "1.3.0",
"@types/node": "^24.8.0",
"bun-types": "1.3.0",
"elysia": "1.4.12",
"typescript": "^5.9.3"
}
},
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@tsconfig/bun": "1.0.9",
"concurrently": "^9.2.1"
},
"trustedDependencies": [
"@tailwindcss/oxide",
"esbuild",
"sharp"
],
"engines": {
"bun": "1.3.0"
}
}