-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "droply",
"version": "0.0.3",
"description": "A tiny Dropzone.js wrapper for Vue 2",
"main": "./dist/droply.js",
"scripts": {
"lint": "eslint --ext .vue,.js --ignore-path .gitignore -- ./src",
"serve": "webpack-dev-server --inline --hot --config ./build/webpack.dev.conf.js --port 4000",
"dev": "npm run lint && npm run build:demo",
"prod": "npm run build:prod",
"build:prod": "cross-env NODE_ENV=production webpack --progress --hide-modules --config ./build/webpack.prod.conf.js",
"build:demo": "cross-env NODE_ENV=production webpack --progress --hide-modules --config ./build/webpack.dev.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/codeunitedio/droply.git"
},
"keywords": [
"utils",
"vuejs",
"vue",
"dropzone",
"upload"
],
"author": "Mirza Pasic <mirza@bosnadev.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeunitedio/droply/issues"
},
"homepage": "https://github.com/codeunitedio/droply#readme",
"dependencies": {
"dropzone": "^4.3.0",
"vue": "^2.1.10"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"cross-env": "^1.0.6",
"css-loader": "^0.23.0",
"eslint": "^3.8.1",
"eslint-config-vue": "^2.0.1",
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-vue": "^1.0.0",
"file-loader": "^0.8.4",
"json-loader": "^0.5.4",
"node-sass": "^4.3.0",
"sass": "^0.5.0",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "^2.0.8",
"vue-html-loader": "^1.2.3",
"vue-loader": "^8.5.4",
"vue-style-loader": "^1.0.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
}
}