-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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
{
"name": "writing-app",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"icons": "vsvg -s src/assets/icons -t src/components/icons"
},
"dependencies": {
"@sentry/browser": "^5.15.4",
"@sentry/integrations": "^5.15.4",
"@vue/eslint-config-airbnb": "5.0.2",
"core-js": "3.6.5",
"portal-vue": "2.1.7",
"postcss-import": "12.0.1",
"prosemirror-example-setup": "1.1.2",
"prosemirror-model": "1.9.1",
"prosemirror-schema-basic": "1.1.2",
"prosemirror-state": "1.3.3",
"prosemirror-view": "1.14.6",
"tailwindcss": "1.2.0",
"vue": "2.6.11",
"vue-gtm": "^2.2.0",
"vue-markdown": "^2.2.4",
"vue-router": "3.1.6",
"vue-slick-popover": "0.1.2",
"vue-svgicon": "3.2.6",
"vuedraggable": "2.23.2",
"vuex": "3.1.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.3.1",
"@vue/cli-plugin-eslint": "4.3.1",
"@vue/cli-plugin-unit-jest": "4.3.1",
"@vue/cli-service": "4.3.1",
"@vue/test-utils": "1.0.0-beta.33",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "25.3.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-vue": "6.2.2",
"lint-staged": "10.1.3",
"vue-template-compiler": "2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
},
"browserslist": [
">1%",
"not ie 10",
"not op_mini all"
]
}