-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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
40
41
42
43
44
45
46
47
48
{
"name": "mooncode-monorepo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:vscode": "code --verbose --extensionDevelopmentPath=$(pwd)/apps/vscode-extension",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"lint-staged": "lint-staged",
"prepare": "husky || true"
},
"devDependencies": {
"husky": "^9.1.7",
"prettier": "^3.5.0",
"turbo": "^2.9.3",
"wait-on": "^8.0.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=22"
},
"packageManager": "npm@10.9.2",
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"braces": "^3.0.3",
"micromatch": "^4.0.8",
"concat-stream": "^2.0.0",
"esbuild": "0.25.8",
"module": {
"lodash.template": "^4.5.0",
"concat-stream": "^2.0.0",
"yargs-parser": "^21.0.0",
"yargs": "^17.0.0"
}
}
}