-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
49
50
{
"name": "vesta-cx",
"private": true,
"scripts": {
"build": "turbo run build",
"build:clean": "pnpm run clean && pnpm run build",
"check-types": "turbo run check-types",
"clean": "cleanc clean",
"dev": "turbo run dev",
"dev:clean": "pnpm run clean && pnpm run dev",
"format": "turbo run format --filter='!./' && prettier --write .",
"install:clean": "pnpm run clean && node -e \"try{require('fs').rmSync(require('path').join(process.cwd(),'node_modules'),{recursive:true,force:true})}catch(_){}\" && pnpm i",
"lint": "turbo run lint",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.4",
"@vesta-cx/config": "workspace:*",
"eslint": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-packagejson": "^3.0.0",
"turbo": "^2.8.10",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.20.0",
"engines": {
"node": ">=18"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@tailwindcss/oxide",
"better-sqlite3",
"esbuild",
"sharp",
"svelte-preprocess",
"unrs-resolver",
"workerd"
],
"ignoredBuiltDependencies": [
"better-sqlite3",
"svelte-preprocess"
]
}
}