forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.27 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.27 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
{
"name": "quasar-monorepo",
"private": true,
"scripts": {
"prepare:types": "pnpm --recursive --parallel prepare:types",
"lint": "oxfmt && oxlint --fix --no-error-on-unmatched-pattern",
"lint:check": "oxfmt --check && oxlint --no-error-on-unmatched-pattern",
"lint:ui:check": "oxfmt --check ./ui && oxlint --no-error-on-unmatched-pattern ./ui",
"test": "pnpm build && pnpm --filter quasar test:specs:ci && pnpm --filter quasar test && pnpm --filter @quasar/vite-plugin test",
"build": "pnpm --filter @quasar/vite-plugin build && pnpm --filter quasar build",
"vite-ecosystem-ci:build": "pnpm build",
"vite-ecosystem-ci:test": "pnpm --filter @quasar/vite-plugin test",
"vue-ecosystem-ci:build": "pnpm build",
"vue-ecosystem-ci:test": "pnpm --filter quasar test && pnpm --filter @quasar/vite-plugin test:runtime",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"oxfmt": "0.52.0",
"oxlint": "1.67.0",
"oxlint-tsgolint": "^0.23.0",
"typescript": "^6.0.3"
},
"lint-staged": {
"*.{js,ts,vue,mjs,cjs,json,css,sass,md}": [
"oxfmt --no-error-on-unmatched-pattern",
"oxlint --deny-warnings --fix --no-error-on-unmatched-pattern"
]
},
"packageManager": "pnpm@11.4.0"
}