-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.63 KB
/
package.json
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
46
{
"name": "myorg",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "moon :dev",
"build": "moon :build",
"start": "moon :start",
"prepare": "moon setup",
"lint": "moon :lint",
"check": "moon :check",
"format": "biome format . --write",
"cmd": "tsx --tsconfig tsconfig.json -r dotenv/config internal/cli.ts",
"compose:cleanup": "docker compose -f docker/compose.yaml down --remove-orphans --volumes",
"compose:up": "docker compose -f docker/compose.yaml up --detach --remove-orphans",
"compose:down": "docker compose -f docker/compose.yaml down --remove-orphans",
"update-deps": "npm-check-updates --configFileName .ncurc.json",
"cleanup": "pnpm --stream --color \"/cleanup:(?!deps|cache)/\"",
"cleanup:deps": "pnpm dlx rimraf pnpm-lock.yaml node_modules",
"cleanup:cache": "pnpm dlx rimraf .moon/cache --verbose",
"cleanup:apps": "pnpm run -r --stream --color cleanup",
"cleanup:store": "pnpm store prune --force",
"typecheck": "moon :typecheck"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@noble/hashes": "^1.7.1",
"@types/node": "^22.13.1",
"citty": "^0.1.6",
"consola": "^3.4.0",
"dotenv": "^16.4.7",
"npm-check-updates": "^17.1.14",
"tsx": "^4.19.2"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@swc/core",
"better-sqlite3",
"core-js-pure",
"esbuild",
"sharp"
]
}
}