Translated using Weblate (Slovenian)
[phpmyadmin.git] / package.json
bloba86cf0aa9b1533db145d273d814d41faacce0230
2   "name": "phpmyadmin",
3   "version": "5.1.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.1",
14     "@babel/core": "^7.12.3",
15     "@babel/preset-env": "^7.12.1",
16     "blueimp-md5": "^2.18.0",
17     "bootstrap": "4.5.3",
18     "codemirror": "5.58.2",
19     "jqplot": "^1.0.9",
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.1",
25     "jquery-mousewheel": "3.1.13",
26     "jquery-ui": "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     "ol": "6.4.3",
33     "popper.js": "^1.16.1",
34     "sass": "^1.29.0",
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     "eslint": "^7.13.0",
44     "eslint-plugin-compat": "^3.8.0",
45     "eslint-plugin-no-jquery": "^2.5.0",
46     "stylelint": "^13.7.2",
47     "stylelint-config-recommended-scss": "^4.2.0",
48     "stylelint-config-standard": "^20.0.0",
49     "stylelint-scss": "^3.18.0"
50   },
51   "resolutions": {
52     "kind-of": "^6.0.3",
53     "lodash": "^4.17.19"
54   },
55   "scripts": {
56     "postinstall": "yarn run build",
57     "build": "yarn run css-compile --style=compressed && yarn run js-compile",
58     "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",
59     "css-lint": "stylelint --syntax scss \"themes/**/scss/*.scss\"",
60     "js-lint": "eslint js/src",
61     "js-compile": "babel js/src -d js/dist"
62   }