-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
70 lines (70 loc) · 1.96 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
{
"name": "vue-wysiwyg",
"version": "1.7.2",
"description": "A WYSIWYG HTML editor for Vue.js",
"keywords": [
"vue",
"vue2",
"wysiwyg",
"html",
"editor",
"localization"
],
"author": "Gregory <[email protected]>",
"license": "MIT",
"main": "dist/vueWysiwyg.js",
"style": "dist/vueWysiwyg.css",
"scripts": {
"dev": "node build/dev-server.js",
"build": "npm run build:prod",
"build:demo": "BABEL_ENV=production BUILD=demo DIR=demo node build/build.js",
"build:prod": "rm -rf dist/* && BABEL_ENV=production BUILD=prod node build/build.js"
},
"dependencies": {
"debounce": "^1.1.0",
"vue": "^2.5.13",
"vue2-dropzone": "^3.0.4"
},
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chalk": "^2.3.1",
"connect-history-api-fallback": "^1.5.0",
"css-loader": "^0.28.9",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"friendly-errors-webpack-plugin": "^1.6.1",
"function-bind": "^1.1.1",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.4",
"opn": "^5.2.0",
"ora": "^1.4.0",
"pug": "^2.0.0-rc.4",
"semver": "^5.5.0",
"shelljs": "^0.8.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.2.0",
"url-loader": "^0.6.2",
"vue-loader": "^14.1.1",
"vue-style-loader": "^4.0.2",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.10.0",
"webpack-dev-middleware": "^2.0.5",
"webpack-hot-middleware": "^2.21.0",
"webpack-merge": "^4.1.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
}
}