-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.26 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.26 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@rushstack/eslint-patch": "^1.10.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.1",
"@semantic-release/npm": "^12.0.1",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.14.12",
"@vitejs/plugin-vue": "^5.1.3",
"@vitest/coverage-v8": "^2.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-vue": "^9.27.0",
"husky": "^9.1.1",
"lerna": "^8.1.7",
"lint-staged": "^15.2.7",
"npm-run-all2": "^6.2.2",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"sass": "^1.77.8",
"semantic-release": "^24.0.0",
"stylelint": "^16.7.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.4.1",
"typescript": "~5.5.0",
"vite-plugin-circular-dependency": "^0.4.1",
"vitest": "^2.0.5",
"vue-tsc": "^2.1.6"
},
"scripts": {
"prepare": "husky",
"check:format": "prettier --check .",
"check:stylelint": "stylelint **/*.{vue,css,scss} --ignore-path .gitignore",
"check:types": "bun run --filter @vue-material/core check:types",
"check:eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"format:prettier": "prettier --write .",
"format:eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format:stylelint": "stylelint **/*.{vue,css,scss} --fix --ignore-path .gitignore",
"build:lib": "bun run --filter @vue-material/core build",
"check": "run-p check:types check:format check:stylelint check:eslint",
"format": "run-s format:prettier format:eslint format:stylelint",
"commit": "cz",
"build": "run-s build:lib"
}
}