package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "phpmyadmin",
  3. "version": "5.1.1",
  4. "description": "A web interface for MySQL and MariaDB",
  5. "repository": "https://github.com/phpmyadmin/phpmyadmin.git",
  6. "author": "The phpMyAdmin Team <developers@phpmyadmin.net> (https://www.phpmyadmin.net/team/)",
  7. "license": "GPL-2.0",
  8. "private": true,
  9. "engines": {
  10. "node": ">=10"
  11. },
  12. "dependencies": {
  13. "@babel/cli": "^7.13.10",
  14. "@babel/core": "^7.13.10",
  15. "@babel/preset-env": "^7.13.12",
  16. "blueimp-md5": "^2.18.0",
  17. "bootstrap": "4.5.3",
  18. "codemirror": "5.61.0",
  19. "jquery": "3.5.1",
  20. "jquery-debounce-throttle": "^1.0.6-rc.0",
  21. "jquery-fullscreen-plugin": "^1.1.5",
  22. "jquery-hashchange": "^2.0.0",
  23. "jquery-migrate": "3.3.2",
  24. "jquery-mousewheel": "3.1.13",
  25. "jquery-ui-dist": "1.12.1",
  26. "jquery-ui-timepicker-addon": "1.6.3",
  27. "jquery-uitablefilter": "^1.0.0",
  28. "jquery-validation": "1.19.3",
  29. "js-cookie": "2.2.1",
  30. "kbwood-jquery-svg": "https://github.com/kbwood/svg/archive/1.5.0.tar.gz",
  31. "locutus.sprintf": "^2.0.14-code-lts.2",
  32. "ol": "6.4.3",
  33. "popper.js": "^1.16.1",
  34. "sass": "^1.32.8",
  35. "stickyfilljs": "2.1.0",
  36. "tablesorter": "^2.31.3",
  37. "tracekit": "0.4.5",
  38. "u2f-api-polyfill": "0.4.4",
  39. "updated-jqplot": "1.0.9",
  40. "zxcvbn": "4.4.2"
  41. },
  42. "devDependencies": {
  43. "babel-jest": "^26.6.3",
  44. "eslint": "^7.22.0",
  45. "eslint-plugin-compat": "^3.9.0",
  46. "eslint-plugin-no-jquery": "^2.5.0",
  47. "jest": "^26.6.3",
  48. "stylelint": "^13.12.0",
  49. "stylelint-config-recommended-scss": "^4.2.0",
  50. "stylelint-config-standard": "^21.0.0",
  51. "stylelint-scss": "^3.19.0"
  52. },
  53. "resolutions": {
  54. "kind-of": "^6.0.3",
  55. "lodash": "^4.17.21"
  56. },
  57. "scripts": {
  58. "postinstall": "yarn run build",
  59. "build": "yarn run css-compile --style=compressed && yarn run js-compile",
  60. "css-compile": "sass themes/pmahomme/scss:themes/pmahomme/css themes/original/scss:themes/original/css themes/metro/scss:themes/metro/css themes/bootstrap/scss:themes/bootstrap/css",
  61. "css-lint": "stylelint --syntax scss \"themes/**/scss/*.scss\"",
  62. "js-lint": "eslint js/src test/javascript test/jest jest.config.js",
  63. "js-compile": "babel js/src -d js/dist",
  64. "test": "jest"
  65. }
  66. }