-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.12 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
{
"name": "ikuyo",
"author": "Haikel Ilham Hakim",
"private": true,
"description": "A monorepo for ekel.dev",
"homepage": "https://ekel.dev",
"license": "MIT",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/haikelz/ikuyo"
},
"scripts": {
"build:web": "bun run --cwd apps/web format:biome && bun run --cwd packages/ui format:biome && moon run web:build",
"dev:web": "moon run web:dev",
"lint:biome": "bun run --cwd apps/web lint:biome && bun run --cwd packages/ui lint:biome",
"format:biome": "bun run --cwd apps/web format:biome && bun run --cwd packages/ui format:biome",
"lhci:mobile": "lhci autorun",
"lhci:desktop": "lhci autorun --collect.settings.preset=desktop",
"test:web": "bun run --cwd apps/web test",
"build:guestbook": "moon run guestbook:build",
"dev:guestbook": "moon run guestbook:dev",
"test:guestbook": "moon run guestbook:test"
},
"devDependencies": {
"@biomejs/biome": "^2.5.10",
"@moonrepo/cli": "^2.5.3",
"tslib": "^2.8.1",
"typescript": "~6.0.3"
},
"workspaces": [
"apps/*",
"packages/*"
]
}