-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.74 KB
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
{
"name": "task_struct",
"version": "0.1.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src \"./src/**/*.?(js|vue)\" --locales \"./src/locales/**/*.json\"",
"lint:style": "stylelint src/**/*.{css,scss} --aei",
"prepare": "husky install"
},
"dependencies": {
"@mdi/js": "^5.9.55",
"core-js": "^3.6.5",
"element-plus": "^1.0.2-beta.28",
"firebase": "^8.7.0",
"firebase-admin": "^9.10.0",
"mdi-vue": "^3.0.7",
"v-calendar": "^3.0.0-alpha.5",
"vue": "^3.0.0",
"vue-i18n": "^9.1.0",
"vue-router": "^4.0.0-0",
"vuex": "^4.0.2",
"vuex-persistedstate": "^4.0.0-beta.3"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@intlify/vue-i18n-loader": "^2.1.0",
"@vue/cli-plugin-babel": "^4.5.15",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "^4.5.15",
"@vue/compiler-sfc": "^3.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"element-theme-chalk": "^2.15.3",
"eslint": "^8.5.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"sass": "^1.35.1",
"sass-loader": "^10.2.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"vue-cli-plugin-element-plus": "0.0.13",
"vue-cli-plugin-i18n": "^0.6.1"
},
"lint-staged": {
"**/*.{js,jsx,vue}": [
"npm run lint"
],
"**/*.{css,scss}": [
"npm run lint:style"
]
}
}