forked from e9ine/vue-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.6 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@e9ine/vue_components",
"version": "1.1.8",
"scripts": {
"dev": "vite",
"serve": "vite preview",
"build": "vite build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"lint-fix": "eslint --ext .js,.vue src",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test:unit": "jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:build": "./node_modules/markdown-styles/bin/generate-md --layout mixu-page --no-header-links --input ./CHANGELOG.md --output ./docs/.vuepress/public/changelog/",
"test": "jest"
},
"files": [
"src/assets",
"src/components",
"src/directives",
"src/filters",
"src/layouts",
"src/utils",
"src/views",
"src/scss",
"src/mixins",
"src/index.js"
],
"dependencies": {
"apexcharts": "^3.17.0",
"sass": "^1.60.0",
"tiptap": "^1.30.0",
"tiptap-extensions": "^1.33.0",
"vue": "^2.7.0",
"vue-advanced-cropper": "^0.16.8",
"vue-apexcharts": "^1.5.2",
"vue-color": "^2.8.1",
"vue-demi": "^0.13.1",
"vue-emoji-picker": "^1.0.1",
"vue-flatpickr-component": "^8.1.5",
"vue-loader": "^15.10.0"
},
"peerDependencies": {
"axios": "^0.21.1",
"jquery": "^3.5.1",
"material-icons": "latest"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@vitejs/plugin-vue2": "^2.2.0",
"@vue/cli-plugin-unit-jest": "^5.0.8",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"@vue/vue2-jest": "^27.0.0",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"bootstrap": "^4.6.0",
"conventional-changelog-cli": "^2.0.34",
"dotenv": "^8.2.0",
"eslint": "^8.37.0",
"eslint-plugin-vue": "^8.7.1",
"highlight.js": "^10.2.0",
"jquery": "^3.5.1",
"lint-staged": "^10.2.11",
"markdown-styles": "^3.1.10",
"material-icons": "latest",
"prettier": "^1.19.1",
"vite": "^4.2.1",
"vite-plugin-vue2": "^2.0.3",
"vite-svg-loader": "^4.0.0",
"vue-jest": "^3.0.7",
"vue-json-pretty": "^1.6.3",
"vue-router": "^3.1.6",
"vuepress": "^1.4.0",
"vuex": "^3.1.3",
"yorkie": "^2.0.0"
},
"main": "src/index.js",
"eslintConfig": {
"extends": [
"./eslintrc.js"
],
"root": true,
"rules": {
"no-mixed-spaces-and-tabs": 0,
"no-console": 0
},
"env": {
"browser": true,
"es2022": true
},
"globals": {
"Stripe": false,
"$": false,
"FB": false
}
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --ext .js src",
"git add"
],
"*.vue": [
"prettier --write",
"eslint --ext .vue src",
"git add"
]
},
"prettier": {
"semi": true,
"tabWidth": 4,
"singleQuote": true,
"printWidth": 200,
"bracketSpacing": false,
"arrowParens": "always",
"jsxBracketSameLine": true
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}