-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
49 lines (49 loc) · 1.74 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@bfehub/root",
"private": true,
"version": "2.0.0",
"description": "Vue components.",
"scripts": {
"prepare": "husky install",
"preinstall": "npx only-allow pnpm",
"commit": "npx git-cz",
"ui:gen": "pnpm --filter=vlib-ui gen",
"ui:build": "pnpm --filter=vlib-ui build",
"ui:test": "pnpm --filter=vlib-ui test",
"ui:test:ui": "pnpm --filter=vlib-ui test:ui",
"ui:test:coverage": "pnpm --filter=vlib-ui test:coverage",
"docs:dev": "pnpm --filter=docs docs:dev",
"docs:clean": "pnpm --filter=docs docs:clean",
"docs:build": "pnpm --filter=docs docs:build",
"docs:serve": "pnpm --filter=docs docs:serve",
"lint:lint-staged": "lint-staged",
"lint:eslint": "eslint --fix --cache \"**/*.{js,jsx,ts,tsx,vue}\"",
"lint:stylelint": "stylelint --fix --cache \"**/*.{css,scss,less,styl,vue}\"",
"lint:prettier": "prettier --write \"**/*.{css,scss,less,styl,js,jsx,ts,tsx,vue}\"",
"version-packages": "changeset version",
"release": "pnpm --recursive --stream build && changeset publish"
},
"dependencies": {
"@bfehub/vlib-ui": "workspace:*",
"vue": "^3.3.4"
},
"devDependencies": {
"@bfehub/eslint-config": "workspace:*",
"@bfehub/stylelint-config": "workspace:*",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@vue/runtime-core": "^3.3.4",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.45.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"stylelint": "^15.10.2",
"typescript": "^5.1.6",
"unplugin-vue-define-options": "^1.3.11"
}
}