package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "admin-lte",
  3. "description": "Responsive open source admin dashboard and control panel.",
  4. "version": "3.0.0-alpha",
  5. "license": "MIT",
  6. "author": "Abdullah Almsaeed <abdullah@almsaeedstudio.com>",
  7. "scripts": {
  8. "css": "npm-run-all --sequential css-compile css-minify",
  9. "css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 build/scss/AdminLTE.scss dist/css/adminlte.css",
  10. "css-minify": "cleancss --level 1 --output dist/css/adminlte.min.css dist/css/adminlte.css",
  11. "compile": "npm-run-all --parallel js css",
  12. "dev": "npm-run-all --parallel watch sync",
  13. "js": "npm-run-all --sequential js-compile js-minify",
  14. "js-compile": "rollup -c --sourcemap",
  15. "js-minify": "uglifyjs --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",
  16. "production": "npm-run-all --parallel compile && node build/npm/Publish.js -v",
  17. "plugins": "node build/npm/Publish.js -v",
  18. "sync": "browser-sync start --server --files *.html pages/ dist/",
  19. "watch": "npm-run-all --parallel watch-css watch-js",
  20. "watch-css": "nodemon --watch build/scss -e scss -x \"npm run css\"",
  21. "watch-js": "nodemon --watch build/js -e js -x \"npm run js\""
  22. },
  23. "keywords": [
  24. "css",
  25. "sass",
  26. "responsive",
  27. "admin",
  28. "template",
  29. "theme",
  30. "framework",
  31. "control-panel",
  32. "dashboard"
  33. ],
  34. "homepage": "https://adminlte.io",
  35. "style": "dist/css/adminlte.css",
  36. "sass": "build/scss/AdminLTE.scss",
  37. "repository": {
  38. "type": "git",
  39. "url": "git://github.com/almasaeed2010/AdminLTE.git"
  40. },
  41. "bugs": {
  42. "url": "https://github.com/almasaeed2010/AdminLTE/issues"
  43. },
  44. "dependencies": {
  45. "@ckeditor/ckeditor5-build-classic": "^1.0.0-beta.1",
  46. "bootstrap": "^4.0.0",
  47. "chart.js": "^2.7.1",
  48. "font-awesome": "^4.7.0",
  49. "jquery": "^3.3.1",
  50. "jquery-ui": "^1.12.1",
  51. "popper.js": "^1.13.0"
  52. },
  53. "peerDependencies": {
  54. "font-awesome": "^4.7.0"
  55. },
  56. "devDependencies": {
  57. "babel-cli": "^6.26.0",
  58. "babel-core": "^6.26.0",
  59. "babel-eslint": "^8.2.2",
  60. "babel-plugin-external-helpers": "^6.22.0",
  61. "babel-preset-env": "^1.6.1",
  62. "browser-sync": "^2.23.6",
  63. "clean-css-cli": "^4.1.10",
  64. "copy-dir": "^0.3.0",
  65. "css-loader": "^0.28.9",
  66. "eslint": "^4.18.1",
  67. "eslint-plugin-compat": "^2.2.0",
  68. "extract-text-webpack-plugin": "^3.0.2",
  69. "node-sass": "^4.7.2",
  70. "nodemon": "^1.15.1",
  71. "npm-run-all": "^4.1.2",
  72. "path": "^0.12.7",
  73. "rollup": "^0.55.5",
  74. "rollup-plugin-babel": "^3.0.3",
  75. "style-loader": "^0.19.1",
  76. "uglify-js": "^3.3.11"
  77. }
  78. }