forked from joe-bell/cva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.39 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
{
"private": true,
"scripts": {
"check": "pnpm run --filter './packages/**' --parallel check",
"build": "pnpm run --filter './packages/**' build",
"dev": "vitest --config .config/vitest.config.ts",
"docs": "pnpm run --filter './docs/latest' dev",
"lint": "pnpm run --filter './packages/**' --parallel lint",
"lint-staged": "lint-staged --config .config/lint-staged.config.mjs",
"preinstall": "npx only-allow pnpm",
"prepare": "run-p -s prepare:*",
"prepare:husky": "if-env SKIP_INSTALL_HUSKY=1 && echo 'Skipping husky install' || husky install",
"prepare:packages": "pnpm build",
"prettier": "prettier --config .prettierrc.json --ignore-unknown --no-error-on-unmatched-pattern",
"syncpack": "syncpack list-mismatches --config .config/.syncpackrc",
"test": "vitest --config .config/vitest.config.ts run --coverage",
"bundlesize": "pnpm run --filter './packages/**' --parallel bundlesize"
},
"devDependencies": {
"@vitest/coverage-v8": "0.34.2",
"husky": "8.0.1",
"if-env": "1.0.4",
"lint-staged": "13.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.0.3",
"prettier-plugin-astro": "0.12.0",
"prettier-plugin-packagejson": "2.4.6",
"prettier-plugin-tailwindcss": "0.5.6",
"syncpack": "8.4.11",
"typescript": "5.1.3",
"vitest": "0.34.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "18"
}
}