-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.62 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
{
"name": "myorg",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "moon setup",
"lint": "moon run :lint",
"check": "moon run :check",
"format": "oxfmt .",
"compose:up": "docker compose -f compose.yaml up -d --remove-orphans",
"compose:down": "docker compose -f compose.yaml down --remove-orphans && docker compose -f compose.yaml --profile instrumented down --remove-orphans",
"compose:cleanup": "docker compose -f compose.yaml down --remove-orphans --volumes",
"compose:instrumented": "docker compose -f compose.yaml --profile instrumented up -d --remove-orphans",
"update-deps": "npm-check-updates --configFileName .ncurc.json && moon :update-deps",
"cleanup": "pnpm --stream --color '/cleanup:(deps|cache|apps|store)/'",
"cleanup:deps": "pnpm dlx del-cli pnpm-lock.yaml node_modules",
"cleanup:cache": "pnpm dlx del-cli .moon/cache --verbose",
"cleanup:apps": "pnpm run -r --stream --color cleanup",
"cleanup:store": "pnpm store prune --force",
"typecheck": "moon :typecheck",
"format:staged": "git diff --cached --name-only --diff-filter=ACM | grep -E '\\.(js|jsx|ts|tsx|mjs|cjs|mts|cts|json)$' | xargs oxfmt"
},
"devDependencies": {
"npm-check-updates": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:"
},
"packageManager": "pnpm@10.30.0",
"pnpm": {
"onlyBuiltDependencies": [
"oxfmt",
"oxlint",
"@swc/core",
"core-js-pure",
"esbuild",
"sharp"
]
}
}