-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@open-xamu-co/ui",
"version": "0.0.1",
"description": "Shared dependencies for the xamu apps",
"author": "@open-xamu-co",
"type": "module",
"workspaces": [
"packages/styles",
"packages/common-enums",
"packages/common-types",
"packages/common-helpers",
"packages/components-vue",
"packages/nuxt"
],
"private": true,
"scripts": {
"lint:eslint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"lint:prettier": "prettier . --check --ignore-unknown",
"lint:stylelint": "stylelint packages/styles/src/{*,**/*,**/**/*}.{css,scss}",
"lint": "yarn lint:eslint && yarn lint:prettier",
"p:styles": "yarn workspace @open-xamu-co/ui-styles",
"p:helpers": "yarn workspace @open-xamu-co/ui-common-helpers",
"p:enums": "yarn workspace @open-xamu-co/ui-common-enums",
"p:types": "yarn workspace @open-xamu-co/ui-common-types",
"p:vue": "yarn workspace @open-xamu-co/ui-components-vue",
"p:nuxt": "yarn workspace @open-xamu-co/ui-nuxt",
"dev:vue": "yarn p:vue dev",
"dev:nuxt": "yarn p:nuxt dev",
"build": "yarn workspaces run build",
"build:nuxt": "yarn p:vue build && yarn p:nuxt build",
"build:css": "yarn p:styles build",
"release": "yarn workspaces run semantic-release",
"release:dry": "yarn workspaces run semantic-release --dry-run"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"yarn": ">=1.22.4"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@open-xamu-co/eslint-config": "^3.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.15.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^3.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1",
"semantic-release-monorepo": "^7.0.5",
"stylelint": "^16.6.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0",
"typescript": "5.6.3",
"vite": "^5.2.12",
"vue-tsc": "^2.1.10"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn check --integrity && lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mdx}": [
"prettier --write"
],
"*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{css,scss}": [
"stylelint --fix",
"prettier --write"
]
}
}