package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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-lint": "stylelint \"scss/**/*.scss\" --cache --cache-location .cache/.stylelintcache",
  11. "lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json",
  12. "ts:type-check": "tsc --noEmit",
  13. "js-lint": "eslint --ext=js,ts --cache --cache-location .cache/.eslintcache --report-unused-disable-directives .",
  14. "lint": "npm-run-all --continue-on-error --parallel css-lint js-lint lockfile-lint"
  15. },
  16. "keywords": [
  17. "css",
  18. "sass",
  19. "responsive",
  20. "admin",
  21. "template",
  22. "theme",
  23. "framework",
  24. "control-panel",
  25. "dashboard"
  26. ],
  27. "homepage": "https://adminlte.io",
  28. "style": "dist/css/adminlte.css",
  29. "sass": "scss/adminlte.scss",
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/ColorlibHQ/AdminLTE.git"
  33. },
  34. "bugs": {
  35. "url": "https://github.com/ColorlibHQ/AdminLTE/issues"
  36. },
  37. "dependencies": {
  38. "@fortawesome/fontawesome-free": "^5.15.3",
  39. "@popperjs/core": "^2.9.2",
  40. "bootstrap": "^5.0.1"
  41. },
  42. "devDependencies": {
  43. "@typescript-eslint/eslint-plugin": "^4.23.0",
  44. "@typescript-eslint/parser": "^4.23.0",
  45. "autoprefixer": "^10.2.5",
  46. "browser-sync": "^2.26.14",
  47. "bundlewatch": "^0.3.2",
  48. "clean-css-cli": "^5.3.0",
  49. "concurrently": "^6.1.0",
  50. "cross-env": "^7.0.3",
  51. "del": "^6.0.0",
  52. "esbuild": "^0.11.23",
  53. "eslint": "^7.26.0",
  54. "eslint-config-xo": "^0.36.0",
  55. "eslint-config-xo-typescript": "^0.41.1",
  56. "eslint-plugin-import": "^2.23.2",
  57. "eslint-plugin-unicorn": "^32.0.1",
  58. "gulp": "^4.0.2",
  59. "gulp-clean-css": "^4.3.0",
  60. "gulp-file-include": "^2.3.0",
  61. "gulp-npm-dist": "^1.0.3",
  62. "gulp-postcss": "^9.0.0",
  63. "gulp-rename": "^2.0.0",
  64. "gulp-sass": "^4.1.0",
  65. "gulp-sourcemaps": "^3.0.0",
  66. "gulp-wait": "0.0.2",
  67. "lockfile-lint": "^4.6.2",
  68. "nodemon": "^2.0.7",
  69. "npm-run-all": "^4.1.5",
  70. "postcss": "^8.2.15",
  71. "postcss-cli": "^8.3.1",
  72. "rtlcss": "^3.1.2",
  73. "sass": "^1.32.13",
  74. "stylelint": "^13.13.1",
  75. "stylelint-config-twbs-bootstrap": "^2.2.0",
  76. "typescript": "^4.2.4"
  77. }
  78. }