AdminLTE/package.json

157 lines
6.6 KiB
JSON
Raw Normal View History

2015-02-01 22:25:09 +01:00
{
2015-04-16 01:07:24 +02:00
"name": "admin-lte",
2015-11-11 20:29:54 +01:00
"description": "Responsive open source admin dashboard and control panel.",
2021-09-19 12:21:26 +02:00
"version": "3.2.0-rc",
2015-11-11 20:29:54 +01:00
"license": "MIT",
2020-05-31 14:28:48 +02:00
"author": "Colorlib <https://colorlib.com>",
2018-05-05 23:48:58 +02:00
"main": "dist/js/adminlte.min.js",
2018-02-04 00:45:19 +01:00
"scripts": {
2020-06-01 20:27:25 +02:00
"bundlewatch": "bundlewatch --config .bundlewatch.config.json",
"css": "npm-run-all css-compile css-prefix css-minify",
"css-splits": "npm-run-all css-compile-splits css-prefix-splits css-minify-splits",
"css-all": "npm-run-all --parallel css css-splits",
"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 21:27:13 +02: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/",
"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 08:49:46 +01: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 14:35:46 +02:00
"css-lint": "stylelint \"build/scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
"compile": "npm-run-all --parallel js css-all",
2018-03-17 18:07:55 +01:00
"dev": "npm-run-all --parallel watch sync",
"docs": "npm-run-all docs-prepare docs-compile",
"docs-lint": "node build/npm/vnu-jar.js",
"docs-compile": "cd docs/ && bundle exec jekyll build -d ../docs_html",
2021-02-19 07:55:04 +01:00
"docs-serve": "npm-run-all compile docs-prepare && cd docs/ && bundle exec jekyll serve",
"docs-prepare": "node build/npm/DocsPublish.js -v",
"lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
"postinstall": "npm run plugins",
"js": "npm-run-all js-compile js-minify",
"js-compile": "rollup --config build/config/rollup.config.js --sourcemap",
"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",
"js-lint": "eslint --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
"lint": "npm-run-all --continue-on-error --parallel css-lint js-lint lockfile-lint",
2021-02-14 14:27:26 +01:00
"production": "npm-run-all --parallel compile plugins",
"prepare-release": "npm-run-all production docs",
2020-05-31 13:58:08 +02:00
"test": "npm-run-all lint production",
"plugins": "node build/npm/Publish.js -v",
2018-03-17 18:07:55 +01:00
"sync": "browser-sync start --server --files *.html pages/ dist/",
2021-01-19 19:36:37 +01:00
"watch": "concurrently \"npm run watch-css\" \"npm run watch-js\"",
"watch-css": "nodemon --legacy-watch --watch build/scss -e scss -x \"npm-run-all css-lint css\"",
"watch-js": "nodemon --legacy-watch --watch build/js -e js -x \"npm-run-all js-lint js\""
2018-02-04 00:45:19 +01:00
},
2015-11-11 20:29:54 +01:00
"keywords": [
"css",
"sass",
"responsive",
"admin",
"template",
"theme",
"framework",
"control-panel",
"dashboard"
],
2018-02-04 00:45:19 +01:00
"homepage": "https://adminlte.io",
2018-03-17 18:07:55 +01:00
"style": "dist/css/adminlte.css",
2020-06-04 21:27:13 +02:00
"sass": "build/scss/adminlte.scss",
2015-04-16 01:07:24 +02:00
"repository": {
"type": "git",
"url": "git://github.com/ColorlibHQ/AdminLTE.git"
2015-04-16 01:07:24 +02:00
},
2015-11-11 20:29:54 +01:00
"bugs": {
"url": "https://github.com/ColorlibHQ/AdminLTE/issues"
2015-11-11 20:29:54 +01:00
},
2018-02-04 00:45:19 +01:00
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@lgaitan/pace-progress": "^1.0.7",
"@sweetalert2/theme-bootstrap-4": "^5.0.8",
"@ttskch/select2-bootstrap4-theme": "^1.5.2",
"bootstrap": "^4.6.1",
"bootstrap-colorpicker": "^3.4.0",
2020-06-06 08:41:45 +02:00
"bootstrap-slider": "^11.0.2",
"bootstrap-switch": "3.3.4",
"bootstrap4-duallistbox": "^4.0.2",
2020-04-02 00:52:43 +02:00
"bs-custom-file-input": "^1.3.4",
2020-07-23 23:12:42 +02:00
"bs-stepper": "^1.7.0",
2020-11-25 10:31:52 +01:00
"chart.js": "^2.9.4",
"codemirror": "^5.64.0",
"datatables.net": "^1.11.3",
"datatables.net-autofill-bs4": "^2.3.9",
"datatables.net-bs4": "^1.11.3",
"datatables.net-buttons-bs4": "^2.0.1",
"datatables.net-colreorder-bs4": "^1.5.5",
"datatables.net-fixedcolumns-bs4": "^4.0.1",
"datatables.net-fixedheader-bs4": "^3.2.0",
"datatables.net-keytable-bs4": "^2.6.4",
"datatables.net-responsive-bs4": "^2.2.9",
"datatables.net-rowgroup-bs4": "^1.1.4",
"datatables.net-rowreorder-bs4": "^1.2.8",
"datatables.net-scroller-bs4": "^2.0.5",
"datatables.net-searchbuilder-bs4": "^1.3.0",
"datatables.net-searchpanes-bs4": "^1.4.0",
"datatables.net-select-bs4": "^1.3.3",
"daterangepicker": "^3.1.0",
"dropzone": "^5.9.3",
"ekko-lightbox": "^5.3.0",
"fastclick": "^1.0.6",
"filterizr": "^2.2.4",
"flag-icon-css": "^4.1.5",
2021-03-20 21:38:29 +01:00
"flot": "^4.2.2",
"fs-extra": "^10.0.0",
"fullcalendar": "^5.10.1",
"icheck-bootstrap": "^3.0.1",
"inputmask": "^5.0.6",
2020-04-02 00:52:43 +02:00
"ion-rangeslider": "^2.3.1",
"jquery": "^3.6.0",
"jquery-knob-chif": "^1.2.13",
"jquery-mapael": "^2.2.0",
"jquery-mousewheel": "^3.1.13",
"jquery-ui-dist": "^1.12.1",
"jquery-validation": "^1.19.3",
"jqvmap-novulnerability": "^1.5.1",
"jsgrid": "^1.5.3",
"jszip": "^3.7.1",
"moment": "^2.29.1",
"overlayscrollbars": "^1.13.1",
"pdfmake": "^0.2.4",
2020-04-02 00:52:43 +02:00
"popper.js": "^1.16.1",
"raphael": "^2.3.0",
2020-04-02 00:52:43 +02:00
"select2": "^4.0.13",
2020-11-25 10:31:52 +01:00
"sparklines": "^1.3.0",
"summernote": "^0.8.20",
"sweetalert2": "^11.2.0",
2020-11-25 10:31:52 +01:00
"tempusdominus-bootstrap-4": "^5.39.0",
2020-11-25 08:59:41 +01:00
"toastr": "^2.1.4",
"uplot": "^1.6.17"
2018-02-04 00:45:19 +01:00
},
2015-03-03 00:41:47 +01:00
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@rollup/plugin-babel": "^5.3.0",
"autoprefixer": "^10.4.0",
"browser-sync": "^2.27.7",
2021-01-27 08:11:35 +01:00
"bundlewatch": "^0.3.2",
"clean-css-cli": "^5.4.2",
"concurrently": "^6.4.0",
"eslint": "^8.3.0",
"eslint-config-xo": "^0.39.0",
"eslint-plugin-compat": "^4.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-unicorn": "^39.0.0",
"lockfile-lint": "^4.6.2",
2021-07-12 20:33:16 +02:00
"node-sass": "^6.0.1",
"node-sass-package-importer": "^5.3.2",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.1",
"postcss-cli": "^8.3.1",
"rollup": "^2.60.1",
"stylelint": "^13.13.1",
"stylelint-config-twbs-bootstrap": "^2.2.4",
"terser": "^5.10.0",
"vnu-jar": "^21.10.12"
2015-02-01 22:25:09 +01:00
}
2015-07-12 15:46:20 +02:00
}