-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 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
{
"name": "components-v3",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "vite",
"preview": "vite preview",
"build": "vite build",
"deploy": "push-dir --dir=dist --branch=gh-pages --cleanup",
"test": "rm -rf dist && echo 'del success' ",
"lint": "eslint . --ext .vue,.js,.ts --fix",
"style": "stylelint \"src/**/*.(vue|scss|css)\" --fix"
},
"husky": {
"hooks": {
"pre-commit": "echo 'husky start working...' && pnpm run lint && pnpm run style"
}
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx,css,sass,scss,json,md}": [
"prettier --write"
],
"*.{vue,css,sass,scss}": [
"stylelint --fix"
],
"*.{vue,js,jsx,ts,jsx,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@types/lodash": "^4.14.195",
"axios": "^1.4.0",
"element-plus": "^2.3.5",
"less": "^4.1.3",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"pinia": "^2.0.36",
"vue": "^3.3.2",
"vue-router": "^4.0.13"
},
"devDependencies": {
"@tsconfig/node18": "^2.0.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "6.7.5",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.3",
"js-web-screen-shot": "1.9.9-rc.5",
"jsdom": "^22.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.69.3",
"stylelint": "^15.10.3",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-recommended-scss": "^13.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-order": "^6.0.3",
"typescript": "~4.9.0",
"unplugin-auto-import": "^0.16.4",
"unplugin-vue-components": "^0.25.0",
"vite": "^4.3.5",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue-tsc": "^1.6.4",
"vue-web-screen-shot": "^1.5.3"
},
"homepage": "https://bigCows.github.io/my-components-v3"
}