Translated using Weblate (Slovenian)
[phpmyadmin.git] / package.json
blob447255adde3d15c330fe1c0ebe15b02781f7f0b7
2   "name": "phpmyadmin",
3   "version": "5.1.0-rc1",
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     "blueimp-md5": "^2.18.0",
17     "bootstrap": "4.5.3",
18     "codemirror": "5.59.2",
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     "jquery.event.drag": "2.2.2",
30     "js-cookie": "2.2.1",
31     "kbwood-jquery-svg": "https://github.com/kbwood/svg/archive/1.5.0.tar.gz",
32     "locutus.sprintf": "^2.0.14-code-lts.2",
33     "ol": "6.4.3",
34     "popper.js": "^1.16.1",
35     "sass": "^1.30.0",
36     "stickyfilljs": "2.1.0",
37     "tablesorter": "^2.31.3",
38     "tracekit": "0.4.5",
39     "u2f-api-polyfill": "0.4.4",
40     "updated-jqplot": "1.0.9",
41     "zxcvbn": "4.4.2"
42   },
43   "devDependencies": {
44     "babel-jest": "^26.5.2",
45     "eslint": "^7.16.0",
46     "eslint-plugin-compat": "^3.9.0",
47     "eslint-plugin-no-jquery": "^2.5.0",
48     "jest": "^26.5.3",
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 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     "js-lint": "eslint js/src test/javascript test/jest jest.config.js",
64     "js-compile": "babel js/src -d js/dist",
65     "test": "jest"
66   }