-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
92 lines (92 loc) · 2.15 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
{
"name": "calendz-front",
"version": "1.6.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"dev": "npm run serve",
"test": "npm run lint"
},
"dependencies": {
"@fullcalendar/core": "^4.4.2",
"@fullcalendar/daygrid": "^4.4.2",
"@fullcalendar/interaction": "^4.4.2",
"@fullcalendar/timegrid": "^4.4.2",
"@fullcalendar/vue": "^4.4.2",
"@saeris/vue-spinners": "^1.0.8",
"axios": "^0.20.0",
"bootstrap": "4.3.1",
"chart.js": "^2.9.3",
"date-fns": "^2.16.1",
"dropzone": "^5.7.2",
"element-ui": "2.13.2",
"es6-promise": "^4.1.1",
"flatpickr": "^4.6.6",
"fuse.js": "^3.6.1",
"nouislider": "^14.6.2",
"perfect-scrollbar": "^1.5.0",
"quill": "^1.3.7",
"register-service-worker": "^1.7.1",
"sweetalert2": "^10.5.1",
"vee-validate": "^2.2.15",
"vue": "^2.6.12",
"vue-analytics": "^5.22.1",
"vue-chartjs": "^3.5.1",
"vue-clipboard2": "^0.3.1",
"vue-flatpickr-component": "^8.1.6",
"vue-router": "^3.4.7",
"vue2-touch-events": "^2.3.2",
"vue2-transitions": "^0.3.0",
"vuex": "^3.5.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-plugin-pwa": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"@vue/eslint-config-standard": "^4.0.0",
"babel-plugin-component": "^1.1.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"node-sass": "^4.14.1",
"sass-loader": "^10.0.3",
"vue-template-compiler": "^2.6.12"
},
"babel": {
"presets": [
"@vue/app"
],
"plugins": [
[
"component",
{
"libraryName": "element-ui",
"styleLibraryName": "theme-chalk"
}
]
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}