-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.55 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
{
"name": "vue3-tpl",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "cross-env NODE_ENV=development API_ENV=development vue-cli-service serve --mode default",
"build:T": "cross-env NODE_ENV=production API_ENV=test OUTPUT_DIR=test vue-cli-service build --mode default",
"build:P": "cross-env NODE_ENV=production API_ENV=production OUTPUT_DIR=dist vue-cli-service build --mode default",
"lint": "vue-cli-service lint --fix --ext .js,.vue",
"commit": "git add . && git-cz"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"dependencies": {
"axios": "^0.21.1",
"clipboard": "^2.0.8",
"core-js": "^3.16.2",
"element-plus": "1.0.2-beta.71",
"file-saver": "^2.0.5",
"js-base64": "^3.6.1",
"monaco-editor": "^0.27.0",
"monaco-editor-webpack-plugin": "^4.1.2",
"normalize.css": "^8.0.1",
"vue": "^3.2.2",
"vue-router": "^4.0.11",
"vuedraggable": "^4.0.3",
"vuex": "^4.0.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-plugin-router": "~4.5.13",
"@vue/cli-plugin-vuex": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"@vue/compiler-sfc": "^3.2.4",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-import": "^1.13.3",
"commitizen": "^4.2.4",
"compression-webpack-plugin": "^8.0.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.16.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"sass": "^1.38.0",
"sass-loader": "~10.1.1",
"script-ext-html-webpack-plugin": "^2.1.5"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/prettier"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"tabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"tailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"src/*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}