-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
94 lines (94 loc) · 2.78 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
{
"private": true,
"scripts": {
"postinstall": "is-ci || husky install",
"prepare": "is-ci || husky install",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
"lint:javascript": "eslint --format 'node_modules/eslint-friendly-formatter' **/*.{js,vue}",
"lint:styles": "stylelint **/*.{vue,htm,html,css,sss,less,scss,sass}",
"lint:markdown": "markdownlint .",
"lint": "run-p lint:*"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"disableScopeLowerCase": true,
"disableSubjectLowerCase": true
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.md": "markdownlint",
"*.{js,vue}": "eslint --format 'node_modules/eslint-friendly-formatter'",
"*.{html,css,sss,less,scss,sass}": "stylelint"
},
"dependencies": {
"b64-to-blob": "^1.2.19",
"core-js": "^3.6.5",
"file-saver": "^2.0.5",
"idb-keyval": "^6.0.2",
"supports-webp": "^2.0.1",
"three": "^0.133.1",
"tui-image-editor": "3.11.0",
"vue": "^2.6.11",
"vue-meta": "^2.4.0",
"vue-router": "^3.2.0",
"vuescroll": "^4.17.3",
"vuetify": "2.5.8",
"vuex": "^3.4.0"
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@fullhuman/postcss-purgecss": "3.0.0",
"@mdi/js": "^6.2.95",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"deepmerge": "^4.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-sonarjs": "^0.10.0",
"eslint-plugin-vue": "^7.19.1",
"husky": "^7.0.2",
"intersection-observer": "^0.12.0",
"lint-staged": "^12.1.4",
"markdownlint-cli": "^0.29.0",
"netlify-cli": "^6.10.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"sass": "1.32.6",
"sass-loader": "^8.0.2",
"sitemap-webpack-plugin": "^1.1.1",
"stylelint": "^13.13.1",
"stylelint-cli": "^1.3.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"vue-loader": "^15.9.8",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.14",
"workbox-webpack-plugin": "^6.3.0",
"workbox-window": "^6.3.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}