package.json 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "name": "admin-lte",
  3. "description": "Responsive open source admin dashboard and control panel.",
  4. "version": "3.0.0-beta.2",
  5. "license": "MIT",
  6. "author": "Colorlib <http://colorlib.com>",
  7. "main": "dist/js/adminlte.min.js",
  8. "scripts": {
  9. "css": "npm-run-all --sequential css-compile css-prefix css-minify",
  10. "css-compile": "node-sass --importer node_modules/node-sass-package-importer/dist/cli.js --output-style expanded --source-map true --source-map-contents true --precision 6 build/scss/AdminLTE.scss dist/css/adminlte.css",
  11. "css-prefix": "postcss --config build/config/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
  12. "css-minify": "cleancss --level 1 --source-map --source-map-inline-sources --output dist/css/adminlte.min.css dist/css/adminlte.css",
  13. "compile": "npm-run-all --parallel js css",
  14. "dev": "npm-run-all --parallel watch sync",
  15. "js": "npm-run-all --sequential js-compile js-minify",
  16. "js-compile": "rollup --config build/config/rollup.config.js --sourcemap",
  17. "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",
  18. "production": "npm-run-all --sequential compile plugins",
  19. "plugins": "node build/npm/Publish.js -v",
  20. "sync": "browser-sync start --server --files *.html pages/ dist/",
  21. "watch": "npm-run-all --parallel watch-css watch-js",
  22. "watch-css": "nodemon --watch build/scss -e scss -x \"npm run css\"",
  23. "watch-js": "nodemon --watch build/js -e js -x \"npm run js\""
  24. },
  25. "keywords": [
  26. "css",
  27. "sass",
  28. "responsive",
  29. "admin",
  30. "template",
  31. "theme",
  32. "framework",
  33. "control-panel",
  34. "dashboard"
  35. ],
  36. "homepage": "https://adminlte.io",
  37. "style": "dist/css/adminlte.css",
  38. "sass": "build/scss/AdminLTE.scss",
  39. "repository": {
  40. "type": "git",
  41. "url": "git://github.com/ColorlibHQ/AdminLTE.git"
  42. },
  43. "bugs": {
  44. "url": "https://github.com/ColorlibHQ/AdminLTE/issues"
  45. },
  46. "dependencies": {
  47. "@fortawesome/fontawesome-free": "^5.9.0",
  48. "@fullcalendar/bootstrap": "^4.2.0",
  49. "@fullcalendar/core": "^4.2.0",
  50. "@fullcalendar/daygrid": "^4.2.0",
  51. "@fullcalendar/interaction": "^4.2.0",
  52. "@fullcalendar/timegrid": "^4.2.0",
  53. "@lgaitan/pace-progress": "^1.0.7",
  54. "@sweetalert2/theme-bootstrap-4": "^2.1.0",
  55. "@ttskch/select2-bootstrap4-theme": "^1.2.3",
  56. "bootstrap": "^4.3.1",
  57. "bootstrap-colorpicker": "^3.1.2",
  58. "bootstrap-slider": "^10.6.1",
  59. "bootstrap4-duallistbox": "^4.0.1",
  60. "chart.js": "^2.8.0",
  61. "datatables.net": "^1.10.19",
  62. "datatables.net-bs4": "^1.10.19",
  63. "daterangepicker": "^3.0.5",
  64. "fastclick": "^1.0.6",
  65. "flag-icon-css": "^3.3.0",
  66. "flot": "^3.1.1",
  67. "icheck-bootstrap": "^3.0.1",
  68. "inputmask": "^4.0.8",
  69. "ion-rangeslider": "^2.3.0",
  70. "jquery": "^3.4.1",
  71. "jquery-knob-chif": "^1.2.13",
  72. "jquery-mapael": "^2.2.0",
  73. "jquery-mousewheel": "^3.1.13",
  74. "jquery-ui-dist": "^1.12.1",
  75. "jqvmap": "github:bbmumford/jqvmap",
  76. "jsgrid": "^1.5.3",
  77. "moment": "^2.24.0",
  78. "overlayscrollbars": "^1.7.2",
  79. "popper.js": "^1.15.0",
  80. "raphael": "^2.2.8",
  81. "select2": "^4.0.7",
  82. "sparklines": "^1.2.0",
  83. "summernote": "^0.8.12",
  84. "sweetalert2": "^8.16.2",
  85. "tempusdominus-bootstrap-4": "^5.1.2",
  86. "toastr": "^2.1.4"
  87. },
  88. "devDependencies": {
  89. "@babel/cli": "^7.5.0",
  90. "@babel/core": "^7.5.4",
  91. "@babel/plugin-external-helpers": "^7.2.0",
  92. "@babel/preset-env": "^7.5.4",
  93. "autoprefixer": "^9.6.0",
  94. "babel-eslint": "^8.2.6",
  95. "browser-sync": "^2.26.7",
  96. "clean-css-cli": "^4.3.0",
  97. "css-loader": "^3.0.0",
  98. "eslint": "^4.19.1",
  99. "eslint-plugin-compat": "^2.7.0",
  100. "extract-text-webpack-plugin": "^3.0.2",
  101. "fs-extra": "^5.0.0",
  102. "node-sass": "^4.12.0",
  103. "node-sass-package-importer": "^5.3.2",
  104. "nodemon": "^1.19.1",
  105. "npm-run-all": "^4.1.5",
  106. "path": "^0.12.7",
  107. "postcss-cli": "^5.0.1",
  108. "rollup": "^1.16.7",
  109. "rollup-plugin-babel": "^4.3.3",
  110. "set-value": "^3.0.1",
  111. "style-loader": "^0.19.1",
  112. "terser": "^4.0.0"
  113. }
  114. }