This repository has been archived by the owner on Apr 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
101 lines (101 loc) · 3.97 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
99
100
101
{
"name": "filerobot-uploader",
"version": "2.15.20",
"main": "dist/index.js",
"description": "[DEPRECATED] The Filerobot Uploader is a multi-function Uploader that will make uploads super easy in your web sites and apps. It is fast to integrate allows end users to upload media, files and any assets via Filerobot's reverse CDN. Files are stored into scalable and flexible Cloud storage, optimised and delivered over CDN to your end users rocket fast. Features include inline image editing, auto-tagging, auto-cropping and many more.",
"author": "scaleflex",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/scaleflex/filerobot-uploader"
},
"homepage": "https://github.com/scaleflex/filerobot-uploader#readme",
"keywords": [
"uploader",
"reverse CDN",
"asset management",
"file manager",
"file uploader",
"image management",
"image compression",
"image resizing",
"image acceleration",
"fast uploader",
"file listing",
"image tagging",
"image editor"
],
"dependencies": {
"core-js": "^3.7.0",
"cropperjs": "^1.5.9",
"filerobot-image-editor": "^3.12.7",
"lodash.debounce": "^4.0.8",
"lodash.find": "^4.6.0",
"mobile-detect": "^1.4.4",
"pretty-bytes": "^5.4.1",
"prop-types": "^15.7.2",
"rc-progress": "^2.6.1",
"react-autosuggest": "^10.0.3",
"react-color": "^2.19.3",
"react-focus-lock": "^1.19.1",
"react-i18nify": "^1.11.18",
"react-load-script": "0.0.6",
"react-loadable": "^5.5.0",
"react-tagsinput": "^3.19.0",
"react-toastr": "^3.0.0",
"react-tooltip": "^3.11.6",
"react-virtualized": "^9.22.2",
"smartcrop": "^2.0.3",
"styled-components": "^4.4.1"
},
"peerDependencies": {
"axios": "^0.17.1",
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.12.7",
"@babel/core": "^7.12.7",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.12.1",
"@babel/plugin-transform-arrow-functions": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-object-assign": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"axios": "^0.18.1",
"babel-loader": "^8.2.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"css-loader": "0.28.7",
"gh-pages": "^2.2.0",
"highlight.js": "^9.18.5",
"html-webpack-plugin": "^3.2.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^3.1.3",
"style-loader": "0.19.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"start-demo-js": "webpack-dev-server --mode development --config config/webpack.demo-js-config.js",
"start-demo-react": "webpack-dev-server --mode development --config config/webpack.demo-react-config.js",
"clean-demo-js": "rm -rf examples/js-plugin/dist",
"build-demo-js": "npm run clean-demo-js && webpack --mode production --config config/webpack.demo-js-config.js",
"clean-demo-react": "rm -rf examples/react-plugin/dist",
"build-demo-react": "npm run clean-demo-react && webpack --mode production --config config/webpack.demo-react-config.js",
"clean-build": "rm -rf build",
"build-new": "webpack --mode production --config config/webpack.js-config.js",
"build-latest": "webpack --mode production --config config/webpack.js-config.js --env.latest",
"build": "npm run clean-build && npm run build-new && npm run build-latest",
"clean-dist": "rm -rf dist",
"dist": "npm run clean-dist && npx babel projects/react-plugin --out-dir dist --copy-files",
"deploy": "gh-pages -d examples/js-plugin/dist",
"publish-demo": "npm run build-demo-js && npm run deploy"
}
}