-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.02 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.02 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": "luna",
"private": true,
"description": "A monorepo starter template using moonrepo, bun, solid-start, and oxc.",
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"setup": "moon run :setup",
"build": "moon run :build --query \"projectLayer=application\"",
"dev": "moon run :dev --query \"projectLayer=application\"",
"start": "moon run :start --query \"projectLayer=application\"",
"typecheck": "tsc --build --verbose",
"check": "bun run lint && bun run format:check && bun run typecheck",
"fix": "bun run lint:fix && bun run format",
"format": "oxfmt .",
"format:check": "oxfmt --list-different .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"clean": "moon run :clean && moon clean --all && git clean -fdx -- .cache node_modules"
},
"devDependencies": {
"@types/bun": "latest",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.16.0",
"typescript": "^5.9.3"
},
"packageManager": "bun@1.3.0"
}