forked from epicmaxco/vuestic-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.22 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
{
"name": "vuestic-ui",
"version": "0.1.8",
"license": "MIT",
"repository": "https://github.com/epicmaxco/vuestic-ui",
"scripts": {
"serve:book": "vue-cli-service serve --mode book",
"build:book": "vue-cli-service build --mode book",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"lint:style": "stylelint '**/*.{vue,html,css,scss}' --fix",
"serve:docs": "vuepress dev docs",
"build:docs": "vuepress build docs"
},
"dependencies": {
"approximate-number": "^2.0.0",
"asva-executors": "^0.1.22",
"chart.js": "^2.6.0",
"core-js": "^3.4.1",
"epic-spinners": "^1.1.0",
"flatpickr": "4.5.1",
"font-awesome": "^4.7.0",
"ionicons": "^3.0.0",
"lodash": "^4.17.15",
"medium-editor": "^5.23.3",
"normalize.css": "^8.0.1",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"v-tooltip": "^2.0.0-rc.30",
"vue": "^2.6.10",
"vue-chartjs": "^3.4.0",
"vue-clipboard2": "^0.3.0",
"vue-color": "^2.7.0",
"vue-epic-bus": "^0.1.5",
"vue-flatpickr-component": "^8.0.0",
"vue-router": "^3.1.3",
"vue-toasted": "^1.1.25",
"vue-yandex-maps": "^0.8.14",
"vuelidate": "^0.7.4",
"vuetable-2": "1.7.5"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "^4.0.5",
"@vue/cli-plugin-unit-jest": "^4.0.5",
"@vue/cli-service": "^4.0.5",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"eslint-plugin-vue": "^6.0.0",
"lint-staged": "^9.4.2",
"node-sass": "^4.13.0",
"popper.js": "^1.16.0",
"sass-loader": "^8.0.0",
"vue-book": "0.1.0-alpha.17",
"vue-bulma-expanding": "0.0.1",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.2.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint --fix",
"git add"
],
"*.vue": [
"vue-cli-service lint --fix",
"stylelint --fix",
"git add"
],
".{htm,html,css,sss,less,scss}": [
"stylelint --fix",
"git add"
]
}
}