-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.31 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
{
"name": "sa-ui",
"version": "0.0.0",
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"internal/*",
"docs"
],
"license": "MIT",
"scripts": {
"cz": "czg",
"test": "vitest",
"test:coverage": "vitest --coverage",
"dev": "vite --config vitest.config.ts",
"format": "prettier --write .",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json --max-warnings 0 && pretty-quick --check --branch main",
"lint:fix": "eslint --fix . --ext .vue,.js,.ts,.jsx,.tsx,.md,.json && pretty-quick --branch main",
"prepare": "husky install"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"dependencies": {
"@sa-ui/components": "workspace:*",
"@sa-ui/constants": "workspace:*",
"@sa-ui/hooks": "workspace:*",
"@sa-ui/utils": "workspace:*",
"@types/lodash": "^4.14.191",
"@types/lodash-es": "^4.17.6",
"@vueuse/core": "10.4.1",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lodash-unified": "^1.0.3"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@esbuild-kit/cjs-loader": "^2.4.0",
"@sa-ui/eslint-config": "workspace:*",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.8.0",
"@types/sass": "^1.43.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vitest/ui": "^0.23.4",
"@vue/test-utils": "^2.1.0",
"@vue/tsconfig": "^0.4.0",
"cz-git": "^1.3.11",
"czg": "^1.3.11",
"eslint": "^8.25.0",
"eslint-define-config": "^1.7.0",
"expect-type": "^0.14.2",
"fast-glob": "^3.2.12",
"husky": "^8.0.1",
"jsdom": "^20.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.55.0",
"tsx": "^3.10.1",
"typescript": "^4.8.4",
"unplugin-vue-define-options": "^1.1.1",
"vitest": "^0.23.4",
"vue": "^3.3.4",
"vue-tsc": "^1.0.9"
},
"engines": {
"node": ">= 16"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"vite",
"react",
"react-dom"
]
}
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
}
}