forked from honzabilek4/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.26 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "directus",
"version": "8.8.1",
"private": true,
"description": "Directus is an Open-Source Headless CMS & API for Managing Custom Databases",
"author": "Rijk van Zanten <rijk@rngr.org>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"fix": "prettier --write \"src/**/*.{js,vue,ts}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.1",
"@directus/extension-toolkit": "^0.8.0",
"@directus/format-title": "^2.4.3",
"@directus/sdk-js": "^6.2.1",
"@tinymce/tinymce-vue": "^3.0.1",
"@types/lodash": "^4.14.149",
"@types/shortid": "^0.0.29",
"@vue/composition-api": "^0.3.4",
"axios": "^0.19.1",
"body-scroll-lock": "^2.6.4",
"codemirror": "^5.50.2",
"convert-range": "^1.1.0",
"core-js": "^3.4.4",
"cropperjs": "^1.5.6",
"date-fns": "^2.9.0",
"deep-object-diff": "^1.1.0",
"hex-rgb": "^4.1.0",
"jsonlint-mod": "^1.7.5",
"leaflet": "^1.6.0",
"lodash": "^4.17.19",
"marked": "^0.8.0",
"micromustache": "5",
"mousetrap": "^1.6.3",
"portal-vue": "^2.1.7",
"promise.allsettled": "^1.0.2",
"shortid": "^2.2.15",
"slug": "^2.1.0",
"snarkdown": "^1.2.2",
"tinymce": "^5.2.2",
"v-tooltip": "^2.0.2",
"vue": "^2.6.10",
"vue-codemirror": "^4.0.6",
"vue-flatpickr-component": "^8.1.5",
"vue-i18n": "^8.15.3",
"vue-meta": "^2.3.2",
"vue-router": "^3.1.3",
"vue-svg-loader": "^0.15.0",
"vue-the-mask": "^0.11.1",
"vuedraggable": "^2.24.1",
"vuex": "^3.1.2",
"vuex-persistedstate": "^2.7.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@storybook/addon-actions": "^5.3.3",
"@storybook/addon-centered": "^5.3.6",
"@storybook/addon-knobs": "^5.3.6",
"@storybook/addon-links": "^5.3.3",
"@storybook/addon-notes": "^5.3.6",
"@storybook/addons": "^5.3.3",
"@storybook/vue": "^5.3.3",
"@types/jest": "^24.0.19",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-plugin-router": "^4.1.0",
"@vue/cli-plugin-typescript": "^4.1.0",
"@vue/cli-plugin-unit-jest": "^4.1.0",
"@vue/cli-plugin-vuex": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.30",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"html-loader": "^0.5.5",
"lint-staged": "^9.5.0",
"mockdate": "^2.0.5",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-is": "^16.12.0",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"typescript": "^3.7.4",
"vue-cli-plugin-storybook": "^1.1.0",
"vue-template-compiler": "^2.6.10",
"vuepress": "^1.2.0",
"webpack-merge": "^4.2.2"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue,ts}": [
"vue-cli-service lint",
"git add"
]
}
}