-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
30 lines (30 loc) · 907 Bytes
/
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
{
"name": "vavite-workspace-root",
"private": "true",
"scripts": {
"dev": "pnpm -r --parallel --filter \"./packages/*\" run dev",
"build": "pnpm -r --filter \"./packages/*\" run build",
"prepare": "husky",
"precommit": "lint-staged",
"test": "pnpm run \"/^(cq|ci)$/\"",
"cq": "pnpm run /^test:/",
"ci": "pnpm -r --stream --workspace-concurrency=1 run ci",
"test:packages": "pnpm -r --stream run test",
"test:prettier": "prettier --check --ignore-path .gitignore --ignore-unknown . '!pnpm-lock.yaml'",
"format": "prettier --ignore-path .gitignore --ignore-unknown . '!pnpm-lock.yaml' --write"
},
"devDependencies": {
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"publint": "^0.2.12",
"typescript": "^5.6.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"rollup"
]
}
}
}