-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.95 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
{
"name": "hay-ui",
"private": true,
"version": "1.0.1",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-zh"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .js,.ts,.tsx,.vue",
"prepare": "npx husky install",
"commit": "git add . && git cz",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"test": "vitest",
"build:components": "node ./scripts/build.js"
},
"dependencies": {
"async-validator": "^4.2.5",
"element-plus": "^2.2.14",
"prism-theme-vars": "^0.2.4",
"vue": "^3.2.37"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@hayeslv/eslint-config": "^0.1.6",
"@testing-library/vue": "^6.6.1",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"@vitejs/plugin-vue": "^3.0.0",
"@vitejs/plugin-vue-jsx": "^2.0.0",
"autoprefixer": "^10.4.8",
"commitizen": "4.2.4",
"conventional-changelog-cli": "2.2.2",
"cz-conventional-changelog-zh": "0.0.2",
"eslint": "^8.21.0",
"eslint-plugin-vue": "^9.3.0",
"fs-extra": "^10.1.0",
"happy-dom": "^6.0.4",
"husky": "7.0.4",
"postcss": "^8.4.16",
"sass": "^1.54.3",
"tailwindcss": "^3.1.8",
"typescript": "^4.6.4",
"vite": "3.0.0",
"vitepress": "1.0.0-alpha.4",
"vitepress-theme-demoblock": "^1.4.2",
"vitest": "^0.21.0",
"vue-tsc": "^0.38.4"
},
"eslintConfig": {
"extends": [
"@hayeslv"
],
"ignorePatterns": [
"build/*",
"cli/build"
],
"rules": {
"node/no-callback-literal": "off",
"no-prototype-builtins": "off",
"no-new-func": "off"
}
},
"lint-staged": {
"*.{js,ts,tsx,vue}": "eslint --cache --fix"
}
}