-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
63 lines (63 loc) · 1.88 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": "vueditor",
"version": "0.3.1",
"description": "a wysiwyg editor based on Vue.js and Vuex",
"repository": {
"type": "git",
"url": "https://github.com/hifarer/vueditor.git"
},
"main": "dist/script/vueditor.min.js",
"scripts": {
"dev-server": "node ./build/dev-server.js",
"dev": "webpack --config ./build/webpack.dev.config.js --progress --hide-modules",
"build": "webpack --config ./build/webpack.prod.config.js --progress --hide-modules",
"plugin": "webpack --config ./build/webpack.plug.config.js --progress --hide-modules",
"eslint": "eslint --fix --ext .vue,.js ./src/"
},
"dependencies": {
"marked": "^0.3.6",
"twemoji": "^2.4.1",
"vue": ">=2.0.5",
"vuex": ">=2.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.4",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-html": "^4.0.0",
"exports-loader": "^0.6.3",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.0.0",
"imports-loader": "^0.7.0",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"postcss": "^6.0.8",
"postcss-loader": "^2.0.6",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"vue-loader": "~9.9.5",
"vue-template-compiler": "^2.0.5",
"webpack": "^3.4.1",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.18.2"
},
"keywords": [
"vue editor",
"vue.js editor",
"rich text editor",
"wysiwyg editor",
"vue.js wysiwyg editor"
],
"author": "hifarer",
"license": "MIT"
}