package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "admin-lte",
  3. "description": "Responsive open source admin dashboard and control panel.",
  4. "version": "4.0.0-alpha1",
  5. "license": "MIT",
  6. "author": "Colorlib <https://colorlib.com>",
  7. "main": "dist/js/adminlte.min.js",
  8. "scripts": {
  9. "bundlewatch": "bundlewatch --config .bundlewatch.config.json",
  10. "css": "npm-run-all css-compile css-prefix css-minify",
  11. "css-compile": "sass --load-path=node_modules build/scss:dist/css",
  12. "css-prefix": "postcss --config build/config/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"",
  13. "css-minify-bash": "cleancss -O1 --format breakWith=lf --with-rebase --source-map --source-map-inline-sources --output ",
  14. "css-minify": "npm run css-minify-bash -- dist/css/ --batch --batch-suffix \".min\" \"dist/css/*.css\" \"!dist/css/*.min.css\"",
  15. "css-lint": "stylelint \"build/scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
  16. "dev": "npm-run-all --parallel watch sync",
  17. "lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
  18. "js": "npm-run-all js-compile js-minify",
  19. "js-compile": "npm-run-all --parallel js-compile-esbuild js-type-check",
  20. "js-compile-esbuild": "node build/config/esbuild.config.js",
  21. "js-type-check": "tsc --noEmit",
  22. "js-minify": "node build/config/esbuild.config-min.js",
  23. "js-lint": "eslint --ext=js,ts --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
  24. "lint": "npm-run-all --continue-on-error --parallel css-lint js-lint lockfile-lint",
  25. "compile": "npm-run-all --parallel css js",
  26. "sync": "browser-sync start --server --files *.html pages/ dist/",
  27. "watch": "concurrently \"npm:watch-*\"",
  28. "watch-css": "nodemon --watch build/scss -e scss -x \"npm-run-all css-compile css-prefix\"",
  29. "watch-js": "nodemon --watch build/ts -e ts -x \"npm-run-all js-compile\""
  30. },
  31. "keywords": [
  32. "css",
  33. "sass",
  34. "responsive",
  35. "admin",
  36. "template",
  37. "theme",
  38. "framework",
  39. "control-panel",
  40. "dashboard"
  41. ],
  42. "homepage": "https://adminlte.io",
  43. "style": "dist/css/adminlte.css",
  44. "sass": "build/scss/adminlte.scss",
  45. "repository": {
  46. "type": "git",
  47. "url": "git://github.com/ColorlibHQ/AdminLTE.git"
  48. },
  49. "bugs": {
  50. "url": "https://github.com/ColorlibHQ/AdminLTE/issues"
  51. },
  52. "dependencies": {
  53. "@fortawesome/fontawesome-free": "^5.15.3",
  54. "@popperjs/core": "^2.9.2",
  55. "bootstrap": "^5.0.0"
  56. },
  57. "devDependencies": {
  58. "@typescript-eslint/eslint-plugin": "^4.22.1",
  59. "@typescript-eslint/parser": "^4.22.1",
  60. "autoprefixer": "^10.2.5",
  61. "browser-sync": "^2.26.14",
  62. "bundlewatch": "^0.3.2",
  63. "clean-css-cli": "^5.3.0",
  64. "concurrently": "^6.0.2",
  65. "esbuild": "^0.11.18",
  66. "eslint": "^7.25.0",
  67. "eslint-config-xo": "^0.36.0",
  68. "eslint-config-xo-typescript": "^0.40.0",
  69. "eslint-plugin-import": "^2.22.1",
  70. "eslint-plugin-unicorn": "^31.0.0",
  71. "lockfile-lint": "^4.6.2",
  72. "nodemon": "^2.0.7",
  73. "npm-run-all": "^4.1.5",
  74. "postcss": "^8.2.14",
  75. "postcss-cli": "^8.3.1",
  76. "sass": "^1.32.12",
  77. "stylelint": "^13.13.1",
  78. "stylelint-config-twbs-bootstrap": "^2.2.0",
  79. "typescript": "^4.2.4"
  80. }
  81. }