Translated using Weblate (Slovenian)
[phpmyadmin.git] / package.json
blobcdd9347c35ee139cd26d2d332435f5db74658573
2   "name": "phpmyadmin",
3   "version": "5.2.0-dev",
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.12.10",
14     "@babel/core": "^7.12.10",
15     "@babel/preset-env": "^7.12.11",
16     "@popperjs/core": "^2.6.0",
17     "blueimp-md5": "^2.18.0",
18     "bootstrap": "5.0.0-beta1",
19     "codemirror": "5.59.0",
20     "jquery": "3.5.1",
21     "jquery-debounce-throttle": "^1.0.6-rc.0",
22     "jquery-fullscreen-plugin": "^1.1.5",
23     "jquery-hashchange": "^2.0.0",
24     "jquery-migrate": "3.3.2",
25     "jquery-mousewheel": "3.1.13",
26     "jquery-ui-dist": "1.12.1",
27     "jquery-ui-timepicker-addon": "1.6.3",
28     "jquery-uitablefilter": "^1.0.0",
29     "jquery-validation": "1.19.2",
30     "jquery.event.drag": "2.2.2",
31     "js-cookie": "2.2.1",
32     "kbwood-jquery-svg": "https://github.com/kbwood/svg/archive/1.5.0.tar.gz",
33     "locutus.sprintf": "^2.0.14-code-lts.2",
34     "ol": "6.4.3",
35     "postcss": "^8.2.1",
36     "rtlcss": "^3.0.0",
37     "sass": "^1.30.0",
38     "stickyfilljs": "2.1.0",
39     "tablesorter": "^2.31.3",
40     "tracekit": "0.4.5",
41     "u2f-api-polyfill": "0.4.4",
42     "updated-jqplot": "1.0.9",
43     "zxcvbn": "4.4.2"
44   },
45   "devDependencies": {
46     "eslint": "^7.16.0",
47     "eslint-plugin-compat": "^3.9.0",
48     "eslint-plugin-no-jquery": "^2.5.0",
49     "stylelint": "^13.8.0",
50     "stylelint-config-recommended-scss": "^4.2.0",
51     "stylelint-config-standard": "^20.0.0",
52     "stylelint-scss": "^3.18.0"
53   },
54   "resolutions": {
55     "kind-of": "^6.0.3",
56     "lodash": "^4.17.19"
57   },
58   "scripts": {
59     "postinstall": "yarn run build",
60     "build": "yarn run css-compile --style=compressed && yarn run css-rtl && yarn run js-compile",
61     "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",
62     "css-lint": "stylelint --syntax scss \"themes/**/scss/*.scss\"",
63     "css-rtl": "find themes/*/css/*theme.css -exec yarn run rtlcss -c .rtlcssrc.json {} \\;",
64     "js-lint": "eslint js/src",
65     "js-compile": "babel js/src -d js/dist"
66   }