-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
98 lines (98 loc) · 2.89 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
{
"name": "vuse",
"version": "0.1.1",
"description": "Vue.js Page Builder",
"author": "Abdelrahman Ismail <[email protected]>",
"module": "dist/vuse.esm.js",
"unpkg": "dist/vuse.min.js",
"main": "dist/vuse.js",
"scripts": {
"dev": "webpack-dev-server --hot --inline --config ./demo/webpack.config.js",
"build": "cross-env NODE_ENV=production node scripts/build.js",
"build:demo": "cross-env NODE_ENV=production webpack --config ./demo/webpack.config.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "scripts/deploy.sh",
"lint": "eslint ./src --fix"
},
"devDependencies": {
"@babel/core": "^7.0.0-rc.1",
"@babel/plugin-proposal-class-properties": "^7.0.0-rc.1",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"babel-loader": "^8.0.0-beta",
"chalk": "^2.4.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.0.5",
"css-loader": "^1.0.0",
"eslint": "^5.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.7.1",
"file-loader": "^1.1.11",
"filesize": "^3.6.1",
"friendly-errors-webpack-plugin": "^1.6.1",
"gzip-size": "^5.0.0",
"html-webpack-plugin": "^4.0.0-alpha",
"mini-css-extract-plugin": "^0.4.4",
"mkdirp": "^0.5.1",
"progress-bar-webpack-plugin": "^1.10.0",
"pug": "^2.0.0-rc.3",
"pug-plain-loader": "^1.0.0",
"rollup": "^0.64.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-css-only": "^0.4.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^4.0.0",
"rollup-plugin-vue": "^4.3.2",
"style-loader": "^0.22.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"stylus-relative-loader": "^3.4.0",
"util": "^0.11.0",
"vue": "^2.5.17",
"vue-loader": "^15.3.0",
"vue-template-compiler": "^2.5.17",
"vuepress": "^0.14.8",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@baianat/base.framework": "^2.0.0-beta.0",
"intersection-observer": "^0.5.0",
"jszip": "^3.1.4",
"lodash-es": "^4.17.4",
"popper.js": "^1.14.4",
"save-as": "^0.1.8",
"sortablejs": "^1.6.1",
"vue-server-renderer": "2.5.17"
},
"license": "MIT",
"files": [
"dist/*.js",
"dist/*.css"
],
"keywords": [
"page-builder",
"vuejs",
"ES6"
],
"maintainers": [
{
"name": "Abdelrahman Awad",
"email": "[email protected]"
},
{
"name": "Abdelrahman Ismail",
"email": "[email protected]"
}
]
}