-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.83 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
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
{
"name": "goway",
"version": "0.1.0",
"private": true,
"size-limit": [
{
"webpack": false,
"gzip": true,
"limit": "210 ms",
"path": "dist/js/app*.js"
}
],
"scripts": {
"serve": "vue-cli-service serve --port 8081",
"build": "vue-cli-service build",
"size": "vue-cli-service build && size-limit",
"lint": "vue-cli-service lint --fix",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml"
},
"dependencies": {
"@editorjs/checklist": "^1.1.0",
"@editorjs/code": "^2.4.1",
"@editorjs/delimiter": "^1.1.0",
"@editorjs/editorjs": "^2.12.3",
"@editorjs/embed": "^2.2.0",
"@editorjs/header": "^2.2.3",
"@editorjs/image": "^2.2.0",
"@editorjs/inline-code": "^1.3.0",
"@editorjs/link": "^2.1.2",
"@editorjs/list": "^1.3.2",
"@editorjs/marker": "^1.2.0",
"@editorjs/paragraph": "^2.5.0",
"@editorjs/quote": "^2.2.0",
"@editorjs/table": "^1.2.0",
"@editorjs/warning": "^1.1.0",
"axios": "^0.18.0",
"code-example": "file:./src/components/Editor/plugins/code-example",
"core-js": "^2.6.5",
"date-fns": "^2.0.0-beta.3",
"element-ui": "^2.12.0",
"highlight.js": "^10.4.1",
"js-cookie": "2.2.0",
"nprogress": "^0.2.0",
"register-service-worker": "^1.5.2",
"vue": "^2.5.22",
"vue-clipboard2": "^0.3.0",
"vue-codemirror": "^4.0.6",
"vue-highlight.js": "^3.1.0",
"vue-i18n": "^8.15.0",
"vue-page-title": "^1.1.4",
"vue-router": "^3.0.1",
"vue-shortkey": "^3.1.7",
"vue-splitpane": "^1.0.4",
"vuedraggable": "2.23.2",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-e2e-nightwatch": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-plugin-pwa": "^3.9.0",
"@vue/cli-plugin-unit-jest": "^3.9.0",
"@vue/cli-service": "^3.9.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-component": "^1.1.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"lint-staged": "^8.1.0",
"node-sass": "^4.9.2",
"sass-loader": "^7.1.0",
"size-limit": "^1.3.7",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"svg-inline-loader": "^0.8.0",
"svg-sprite-loader": "4.1.3",
"svgo": "1.2.0",
"vue-cli-plugin-element": "^1.0.1",
"vue-cli-plugin-pug": "^1.0.7",
"vue-template-compiler": "^2.5.21"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}