package.json 2.8 KB

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