-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "root",
"private": true,
"author": "bludnic",
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*",
"pro/*"
],
"engines": {
"node": "~22.12"
},
"bin": {
"dev": "./bin/dev.sh",
"cli": "./bin/cli.sh"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@moonrepo/cli": "1.28.3",
"execa": "^9.5.2",
"prettier": "^3.4.2",
"resolve-tspaths": "^0.8.23",
"ts-node": "10.9.2",
"tsconfig-moon": "^1.3.0",
"typescript": "5.7.2"
},
"scripts": {
"dev": "moon run :dev",
"build": "moon run :build",
"lint": "moon run :lint",
"lint:fix": "moon run :lint-fix",
"typecheck": "moon run :typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "moon run :build && moon run :dts && ./scripts/release.mjs",
"ui:sync": "moon run frontend:build && rm -rf apps/cli/frontend && cp -r pro/frontend/dist apps/cli/frontend && git add apps/cli/frontend",
"debug": "ts-node --transpile-only packages/cli/src/index.ts trade debug"
}
}