package.json 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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": "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 --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 dist/css/adminlte.css.map --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 -c --sourcemap",
  17. "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",
  18. "production": "npm-run-all --parallel compile && node build/npm/Publish.js -v",
  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. "@ckeditor/ckeditor5-build-classic": "^1.0.0-beta.4",
  48. "@fortawesome/fontawesome-free": "^5.8.2",
  49. "bootstrap": "^4.3.1",
  50. "chart.js": "^2.8.0",
  51. "datatables.net": "^1.10.19",
  52. "datatables.net-bs4": "^1.10.19",
  53. "jquery": "^3.4.1",
  54. "jquery-ui": "^1.12.1",
  55. "overlayscrollbars": "^1.7.1",
  56. "popper.js": "^1.15.0"
  57. },
  58. "peerDependencies": {
  59. "font-awesome": "^4.7.0"
  60. },
  61. "devDependencies": {
  62. "autoprefixer": "^8.6.5",
  63. "babel-cli": "^6.26.0",
  64. "babel-core": "^6.26.3",
  65. "babel-eslint": "^8.2.6",
  66. "babel-plugin-external-helpers": "^6.22.0",
  67. "babel-preset-env": "^1.7.0",
  68. "browser-sync": "^2.26.5",
  69. "clean-css-cli": "^4.3.0",
  70. "css-loader": "^0.28.11",
  71. "eslint": "^4.19.1",
  72. "eslint-plugin-compat": "^2.7.0",
  73. "extract-text-webpack-plugin": "^3.0.2",
  74. "fs-extra": "^5.0.0",
  75. "ncp": "^2.0.0",
  76. "node-sass": "^4.12.0",
  77. "nodemon": "^1.19.0",
  78. "npm-run-all": "^4.1.5",
  79. "path": "^0.12.7",
  80. "postcss-cli": "^5.0.1",
  81. "rollup": "^0.55.5",
  82. "rollup-plugin-babel": "^3.0.7",
  83. "style-loader": "^0.19.1",
  84. "uglify-js": "^3.5.13"
  85. }
  86. }