package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. "sync": "browser-sync start --server --files *.html pages/ dist/",
  18. "watch": "npm-run-all --parallel watch-css watch-js",
  19. "watch-css": "nodemon --watch build/scss -e scss -x \"npm run css\"",
  20. "watch-js": "nodemon --watch build/js -e js -x \"npm run js\""
  21. },
  22. "keywords": [
  23. "css",
  24. "sass",
  25. "responsive",
  26. "admin",
  27. "template",
  28. "theme",
  29. "framework",
  30. "control-panel",
  31. "dashboard"
  32. ],
  33. "homepage": "https://adminlte.io",
  34. "style": "dist/css/adminlte.css",
  35. "sass": "build/scss/AdminLTE.scss",
  36. "repository": {
  37. "type": "git",
  38. "url": "git://github.com/almasaeed2010/AdminLTE.git"
  39. },
  40. "bugs": {
  41. "url": "https://github.com/almasaeed2010/AdminLTE/issues"
  42. },
  43. "dependencies": {
  44. "bootstrap": "^4.0.0",
  45. "chart.js": "^2.7.1",
  46. "font-awesome": "^4.7.0",
  47. "jquery": "^3.3.1",
  48. "jquery-ui": "^1.12.1",
  49. "popper.js": "^1.13.0"
  50. },
  51. "peerDependencies": {
  52. "font-awesome": "^4.7.0"
  53. },
  54. "devDependencies": {
  55. "babel-cli": "^6.26.0",
  56. "babel-core": "^6.26.0",
  57. "babel-eslint": "^8.2.2",
  58. "babel-plugin-external-helpers": "^6.22.0",
  59. "babel-preset-env": "^1.6.1",
  60. "browser-sync": "^2.23.6",
  61. "clean-css-cli": "^4.1.10",
  62. "copy-dir": "^0.3.0",
  63. "css-loader": "^0.28.9",
  64. "eslint": "^4.18.1",
  65. "eslint-plugin-compat": "^2.2.0",
  66. "extract-text-webpack-plugin": "^3.0.2",
  67. "node-sass": "^4.7.2",
  68. "nodemon": "^1.15.1",
  69. "npm-run-all": "^4.1.2",
  70. "path": "^0.12.7",
  71. "rollup": "^0.55.5",
  72. "rollup-plugin-babel": "^3.0.3",
  73. "style-loader": "^0.19.1",
  74. "uglify-js": "^3.3.11"
  75. }
  76. }