This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
41 lines (41 loc) · 2.05 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
{
"name": "laravel-responsive-file-manager",
"devDependencies": {
"cross-env": "^7.0",
"laravel-mix": "^5.0.1",
"less": "^3.12.2",
"less-loader": "^7.0.1",
"tinymce": "^5.10.0"
},
"scripts": {
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "yarn development -- --watch",
"watch-poll": "yarn watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"dist": "yarn clean && yarn production && yarn cleanTemp",
"build": "yarn clean && yarn development && yarn cleanTemp",
"cleanTemp": "rm -rf ./resources/tmp/*",
"clean": "yarn cleanTemp && rm -rf ./resources/filemanager/css/* && rm -rf ./resources/filemanager/js/* && rm -f ./resources/filemanager/plugin.min.js && rm -f ./resources/tinymce/plugins/responsivefilemanager/plugin.min.js"
},
"dependencies": {
"blueimp-file-upload": "^9.22.0",
"bootbox.js": "github:makeusabrew/bootbox#v3.3.0",
"bootstrap": "github:twbs/bootstrap#v2.3.2",
"bootstrap-lightbox": "github:jbutz/bootstrap-lightbox#0.6.1",
"bootstrap-modal": "github:jschr/bootstrap-modal#2.2.6",
"clipboard": "^1.7.1",
"fabric": "1.7.22",
"html5shiv": "^3.7.3",
"jquery": "^3.0.0",
"jquery-contextmenu": "^1.11.0",
"jquery-scrollstop": "^1.2.0",
"jquery-touchswipe": "^1.6.18",
"jquery-ui": "^1.13.0",
"jquery-ui-touch-punch": "^0.2.3",
"tui-code-snippet": "^1.5.1",
"tui-color-picker": "^2.2.3",
"tui-image-editor": "^3.5.2",
"vanilla-lazyload": "^10.14.0"
}
}