forked from joe-bell/cva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 889 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
{
"private": true,
"scripts": {
"build": "pnpm run -r --parallel build",
"dev": "pnpm run -r --parallel dev",
"lint": "run-p lint:*",
"lint-staged": "lint-staged --config .config/lint-staged.config.mjs",
"lint:packages": "pnpm syncpack:list-mismatches",
"lint:prettier": "pnpm run prettier -- --check .",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"prettier": "prettier --ignore-unknown --no-error-on-unmatched-pattern",
"syncpack:format": "syncpack format --config .config/.syncpackrc",
"syncpack:list-mismatches": "syncpack list-mismatches --config .config/.syncpackrc",
"test": "pnpm run -r --parallel test",
"tsc": "pnpm run -r --parallel tsc"
},
"devDependencies": {
"husky": "8.0.1",
"lint-staged": "13.0.1",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"syncpack": "8.4.11"
}
}