2015-02-01 21:25:09 +00:00
|
|
|
{
|
2015-04-15 23:07:24 +00:00
|
|
|
"name": "admin-lte",
|
2015-11-11 19:29:54 +00:00
|
|
|
"description": "Responsive open source admin dashboard and control panel.",
|
2021-03-22 07:29:43 +00:00
|
|
|
"version": "3.1.0",
|
2015-11-11 19:29:54 +00:00
|
|
|
"license": "MIT",
|
2020-05-31 12:28:48 +00:00
|
|
|
"author": "Colorlib <https://colorlib.com>",
|
2018-05-05 21:48:58 +00:00
|
|
|
"main": "dist/js/adminlte.min.js",
|
2018-02-03 23:45:19 +00:00
|
|
|
"scripts": {
|
2020-06-01 18:27:25 +00:00
|
|
|
"bundlewatch": "bundlewatch --config .bundlewatch.config.json",
|
2021-01-18 08:02:05 +00:00
|
|
|
"css": "npm-run-all css-compile css-prefix css-minify",
|
2021-01-27 07:26:14 +00:00
|
|
|
"css-splits": "npm-run-all css-compile-splits css-prefix-splits css-minify-splits",
|
|
|
|
"css-all": "npm-run-all --parallel css css-splits",
|
2019-11-07 07:14:16 +00:00
|
|
|
"css-compile-bash": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js --output-style expanded --source-map true --source-map-contents true --precision 6 ",
|
2020-06-04 19:27:13 +00:00
|
|
|
"css-compile": "npm run css-compile-bash -- build/scss/adminlte.scss dist/css/adminlte.css",
|
|
|
|
"css-compile-splits": "npm run css-compile-bash -- build/scss/parts -o dist/css/alt/",
|
2020-06-01 18:09:37 +00:00
|
|
|
"css-prefix": "postcss --config build/config/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
|
|
|
|
"css-prefix-splits": "postcss --config build/config/postcss.config.js --replace \"dist/css/alt/*.css\" \"!dist/css/alt/*.min.css\"",
|
2021-02-22 07:49:46 +00:00
|
|
|
"css-minify-bash": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output ",
|
|
|
|
"css-minify": "npm run css-minify-bash -- dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\"",
|
|
|
|
"css-minify-splits": "npm run css-minify-bash -- dist/css/alt/ --batch --batch-suffix \".min\" \"dist/css/alt/*.css\" \"!dist/css/alt/*.min.css\"",
|
2020-05-30 12:35:46 +00:00
|
|
|
"css-lint": "stylelint \"build/scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
|
2019-10-29 08:22:51 +00:00
|
|
|
"compile": "npm-run-all --parallel js css-all",
|
2018-03-17 17:07:55 +00:00
|
|
|
"dev": "npm-run-all --parallel watch sync",
|
2021-01-18 08:02:05 +00:00
|
|
|
"docs": "npm-run-all docs-prepare docs-compile",
|
2020-06-02 09:32:09 +00:00
|
|
|
"docs-lint": "node build/npm/vnu-jar.js",
|
2019-09-19 07:02:07 +00:00
|
|
|
"docs-compile": "cd docs/ && bundle exec jekyll build -d ../docs_html",
|
2021-02-19 06:55:04 +00:00
|
|
|
"docs-serve": "npm-run-all compile docs-prepare && cd docs/ && bundle exec jekyll serve",
|
2019-09-19 07:02:07 +00:00
|
|
|
"docs-prepare": "node build/npm/DocsPublish.js -v",
|
2021-01-27 07:01:12 +00:00
|
|
|
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
|
2020-06-01 18:11:09 +00:00
|
|
|
"postinstall": "npm run plugins",
|
2021-01-18 08:02:05 +00:00
|
|
|
"js": "npm-run-all js-compile js-minify",
|
2019-07-11 12:42:43 +00:00
|
|
|
"js-compile": "rollup --config build/config/rollup.config.js --sourcemap",
|
2019-07-12 22:02:10 +00:00
|
|
|
"js-minify": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/adminlte.js.map,includeSources,url=adminlte.min.js.map\" --output dist/js/adminlte.min.js dist/js/adminlte.js",
|
2020-05-30 13:18:56 +00:00
|
|
|
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
|
2021-01-27 07:01:12 +00:00
|
|
|
"lint": "npm-run-all --continue-on-error --parallel css-lint js-lint lockfile-lint",
|
2021-02-14 13:27:26 +00:00
|
|
|
"production": "npm-run-all --parallel compile plugins",
|
2021-01-18 08:02:05 +00:00
|
|
|
"prepare-release": "npm-run-all production docs",
|
2020-05-31 11:58:08 +00:00
|
|
|
"test": "npm-run-all lint production",
|
2018-04-01 17:35:02 +00:00
|
|
|
"plugins": "node build/npm/Publish.js -v",
|
2018-03-17 17:07:55 +00:00
|
|
|
"sync": "browser-sync start --server --files *.html pages/ dist/",
|
2021-01-19 18:36:37 +00:00
|
|
|
"watch": "concurrently \"npm run watch-css\" \"npm run watch-js\"",
|
2020-05-30 12:35:46 +00:00
|
|
|
"watch-css": "nodemon --watch build/scss -e scss -x \"npm-run-all css-lint css\"",
|
2020-05-30 13:18:56 +00:00
|
|
|
"watch-js": "nodemon --watch build/js -e js -x \"npm-run-all js-lint js\""
|
2018-02-03 23:45:19 +00:00
|
|
|
},
|
2015-11-11 19:29:54 +00:00
|
|
|
"keywords": [
|
|
|
|
"css",
|
|
|
|
"sass",
|
|
|
|
"responsive",
|
|
|
|
"admin",
|
|
|
|
"template",
|
|
|
|
"theme",
|
|
|
|
"framework",
|
|
|
|
"control-panel",
|
|
|
|
"dashboard"
|
|
|
|
],
|
2018-02-03 23:45:19 +00:00
|
|
|
"homepage": "https://adminlte.io",
|
2018-03-17 17:07:55 +00:00
|
|
|
"style": "dist/css/adminlte.css",
|
2020-06-04 19:27:13 +00:00
|
|
|
"sass": "build/scss/adminlte.scss",
|
2015-04-15 23:07:24 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-06-06 12:32:53 +00:00
|
|
|
"url": "git://github.com/ColorlibHQ/AdminLTE.git"
|
2015-04-15 23:07:24 +00:00
|
|
|
},
|
2015-11-11 19:29:54 +00:00
|
|
|
"bugs": {
|
2019-06-06 12:32:53 +00:00
|
|
|
"url": "https://github.com/ColorlibHQ/AdminLTE/issues"
|
2015-11-11 19:29:54 +00:00
|
|
|
},
|
2018-02-03 23:45:19 +00:00
|
|
|
"dependencies": {
|
2021-03-20 20:38:29 +00:00
|
|
|
"@fortawesome/fontawesome-free": "^5.15.3",
|
2019-06-14 07:33:43 +00:00
|
|
|
"@lgaitan/pace-progress": "^1.0.7",
|
2021-04-26 07:34:27 +00:00
|
|
|
"@sweetalert2/theme-bootstrap-4": "^4.0.5",
|
2021-02-01 04:04:50 +00:00
|
|
|
"@ttskch/select2-bootstrap4-theme": "^1.5.2",
|
2021-01-27 07:48:15 +00:00
|
|
|
"bootstrap": "^4.6.0",
|
2021-06-07 11:34:13 +00:00
|
|
|
"bootstrap-colorpicker": "^3.4.0",
|
2020-06-06 06:41:45 +00:00
|
|
|
"bootstrap-slider": "^11.0.2",
|
2020-04-01 15:14:58 +00:00
|
|
|
"bootstrap-switch": "3.3.4",
|
2020-06-01 11:05:25 +00:00
|
|
|
"bootstrap4-duallistbox": "^4.0.2",
|
2020-04-01 22:52:43 +00:00
|
|
|
"bs-custom-file-input": "^1.3.4",
|
2020-07-23 21:12:42 +00:00
|
|
|
"bs-stepper": "^1.7.0",
|
2020-11-25 09:31:52 +00:00
|
|
|
"chart.js": "^2.9.4",
|
2021-06-28 11:53:09 +00:00
|
|
|
"codemirror": "^5.62.0",
|
2021-06-07 11:32:51 +00:00
|
|
|
"datatables.net": "^1.10.25",
|
2021-06-21 07:51:15 +00:00
|
|
|
"datatables.net-autofill-bs4": "^2.3.9",
|
2021-06-07 11:36:18 +00:00
|
|
|
"datatables.net-bs4": "^1.10.25",
|
2021-06-07 11:38:41 +00:00
|
|
|
"datatables.net-buttons-bs4": "^1.7.1",
|
2021-06-07 11:35:09 +00:00
|
|
|
"datatables.net-colreorder-bs4": "^1.5.4",
|
2021-06-07 11:43:54 +00:00
|
|
|
"datatables.net-fixedcolumns-bs4": "^3.3.3",
|
2021-06-07 11:39:24 +00:00
|
|
|
"datatables.net-fixedheader-bs4": "^3.1.9",
|
2021-06-07 11:43:03 +00:00
|
|
|
"datatables.net-keytable-bs4": "^2.6.2",
|
2021-06-14 06:07:32 +00:00
|
|
|
"datatables.net-responsive-bs4": "^2.2.9",
|
2021-06-07 11:40:14 +00:00
|
|
|
"datatables.net-rowgroup-bs4": "^1.1.3",
|
2021-06-07 11:35:45 +00:00
|
|
|
"datatables.net-rowreorder-bs4": "^1.2.8",
|
2021-06-07 11:43:23 +00:00
|
|
|
"datatables.net-scroller-bs4": "^2.0.4",
|
2021-06-07 11:36:04 +00:00
|
|
|
"datatables.net-searchbuilder-bs4": "^1.1.0",
|
2021-06-07 11:37:43 +00:00
|
|
|
"datatables.net-searchpanes-bs4": "^1.3.0",
|
2021-03-29 04:54:49 +00:00
|
|
|
"datatables.net-select-bs4": "^1.3.3",
|
2020-05-30 10:10:52 +00:00
|
|
|
"daterangepicker": "^3.1.0",
|
2021-04-05 03:23:37 +00:00
|
|
|
"dropzone": "^5.9.2",
|
2019-08-30 13:21:37 +00:00
|
|
|
"ekko-lightbox": "^5.3.0",
|
2019-06-10 15:38:54 +00:00
|
|
|
"fastclick": "^1.0.6",
|
2020-06-01 11:05:25 +00:00
|
|
|
"filterizr": "^2.2.4",
|
2020-06-11 12:27:46 +00:00
|
|
|
"flag-icon-css": "^3.5.0",
|
2021-03-20 20:38:29 +00:00
|
|
|
"flot": "^4.2.2",
|
2021-01-25 09:29:46 +00:00
|
|
|
"fs-extra": "^9.1.0",
|
2021-06-21 07:51:25 +00:00
|
|
|
"fullcalendar": "^5.8.0",
|
2019-06-14 07:33:43 +00:00
|
|
|
"icheck-bootstrap": "^3.0.1",
|
2021-06-07 11:33:34 +00:00
|
|
|
"inputmask": "^5.0.6",
|
2020-04-01 22:52:43 +00:00
|
|
|
"ion-rangeslider": "^2.3.1",
|
2021-03-08 12:47:49 +00:00
|
|
|
"jquery": "^3.6.0",
|
2019-06-14 07:33:43 +00:00
|
|
|
"jquery-knob-chif": "^1.2.13",
|
|
|
|
"jquery-mapael": "^2.2.0",
|
|
|
|
"jquery-mousewheel": "^3.1.13",
|
|
|
|
"jquery-ui-dist": "^1.12.1",
|
2021-01-11 13:19:52 +00:00
|
|
|
"jquery-validation": "^1.19.3",
|
2019-08-28 10:59:33 +00:00
|
|
|
"jqvmap-novulnerability": "^1.5.1",
|
2019-07-01 00:37:24 +00:00
|
|
|
"jsgrid": "^1.5.3",
|
2021-02-15 04:59:37 +00:00
|
|
|
"jszip": "^3.6.0",
|
2020-11-25 06:35:13 +00:00
|
|
|
"moment": "^2.29.1",
|
2020-12-28 12:25:32 +00:00
|
|
|
"overlayscrollbars": "^1.13.1",
|
2021-04-12 05:18:23 +00:00
|
|
|
"pdfmake": "^0.1.71",
|
2020-04-01 22:52:43 +00:00
|
|
|
"popper.js": "^1.16.1",
|
2019-08-28 10:59:33 +00:00
|
|
|
"raphael": "^2.3.0",
|
2020-04-01 22:52:43 +00:00
|
|
|
"select2": "^4.0.13",
|
2020-11-25 09:31:52 +00:00
|
|
|
"sparklines": "^1.3.0",
|
2020-06-01 11:05:25 +00:00
|
|
|
"summernote": "^0.8.18",
|
2021-05-24 03:28:12 +00:00
|
|
|
"sweetalert2": "^10.16.9",
|
2020-11-25 09:31:52 +00:00
|
|
|
"tempusdominus-bootstrap-4": "^5.39.0",
|
2020-11-25 07:59:41 +00:00
|
|
|
"toastr": "^2.1.4",
|
2021-06-21 07:49:08 +00:00
|
|
|
"uplot": "^1.6.13"
|
2018-02-03 23:45:19 +00:00
|
|
|
},
|
2015-03-02 23:41:47 +00:00
|
|
|
"devDependencies": {
|
2021-06-21 07:49:25 +00:00
|
|
|
"@babel/core": "^7.14.6",
|
2021-06-28 11:50:24 +00:00
|
|
|
"@babel/preset-env": "^7.14.7",
|
2021-02-15 05:17:21 +00:00
|
|
|
"@rollup/plugin-babel": "^5.3.0",
|
2021-05-31 03:46:05 +00:00
|
|
|
"autoprefixer": "^10.2.6",
|
2021-07-05 11:50:15 +00:00
|
|
|
"browser-sync": "^2.27.4",
|
2021-01-27 07:11:35 +00:00
|
|
|
"bundlewatch": "^0.3.2",
|
2021-05-03 10:55:45 +00:00
|
|
|
"clean-css-cli": "^5.3.0",
|
2021-05-31 03:48:29 +00:00
|
|
|
"concurrently": "^6.2.0",
|
2021-07-05 11:49:00 +00:00
|
|
|
"eslint": "^7.30.0",
|
2021-04-19 07:13:59 +00:00
|
|
|
"eslint-config-xo": "^0.36.0",
|
2020-12-28 11:45:58 +00:00
|
|
|
"eslint-plugin-compat": "^3.9.0",
|
2021-05-31 03:49:39 +00:00
|
|
|
"eslint-plugin-import": "^2.23.4",
|
2021-05-10 14:01:12 +00:00
|
|
|
"eslint-plugin-unicorn": "^32.0.1",
|
2021-03-01 07:38:07 +00:00
|
|
|
"lockfile-lint": "^4.6.2",
|
2021-05-10 12:52:07 +00:00
|
|
|
"node-sass": "^6.0.0",
|
2019-08-20 09:03:48 +00:00
|
|
|
"node-sass-package-importer": "^5.3.2",
|
2021-07-05 11:49:39 +00:00
|
|
|
"nodemon": "^2.0.9",
|
2019-05-18 08:27:50 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2021-06-21 07:50:38 +00:00
|
|
|
"postcss": "^8.3.5",
|
2020-12-22 07:42:47 +00:00
|
|
|
"postcss-cli": "^8.3.1",
|
2021-06-28 11:51:00 +00:00
|
|
|
"rollup": "^2.52.3",
|
2021-05-03 11:33:16 +00:00
|
|
|
"stylelint": "^13.13.1",
|
2021-06-14 06:06:49 +00:00
|
|
|
"stylelint-config-twbs-bootstrap": "^2.2.1",
|
2021-07-05 11:52:02 +00:00
|
|
|
"terser": "^5.7.1",
|
2021-06-14 06:06:29 +00:00
|
|
|
"vnu-jar": "^21.6.11"
|
2015-02-01 21:25:09 +00:00
|
|
|
}
|
2015-07-12 13:46:20 +00:00
|
|
|
}
|