Translated using Weblate (Slovenian)
[phpmyadmin.git] / package.json
blobc2b6ced7988d0c980a407a4c9a4129d1e5b3be3b
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.13.16",
14     "@babel/core": "^7.14.0",
15     "@babel/preset-env": "^7.14.1",
16     "@popperjs/core": "^2.9.2",
17     "autoprefixer": "^10.2.5",
18     "bootstrap": "5.0.1",
19     "codemirror": "5.61.0",
20     "jquery": "3.6.0",
21     "jquery-debounce-throttle": "^1.0.6-rc.0",
22     "jquery-migrate": "3.3.2",
23     "jquery-mousewheel": "3.1.13",
24     "jquery-ui-dist": "1.12.1",
25     "jquery-ui-timepicker-addon": "1.6.3",
26     "jquery-uitablefilter": "^1.0.0",
27     "jquery-validation": "1.19.3",
28     "js-cookie": "2.2.1",
29     "kbwood-jquery-svg": "https://github.com/kbwood/svg/archive/1.5.0.tar.gz",
30     "locutus.sprintf": "^2.0.14-code-lts.2",
31     "ol": "6.5.0",
32     "postcss": "^8.2.15",
33     "postcss-cli": "^8.3.1",
34     "rtlcss": "^3.1.2",
35     "sass": "^1.32.12",
36     "stickyfilljs": "2.1.0",
37     "tablesorter": "^2.31.3",
38     "tracekit": "0.4.6",
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.6.3",
45     "eslint": "^7.26.0",
46     "eslint-plugin-compat": "^3.9.0",
47     "eslint-plugin-no-jquery": "^2.6.0",
48     "jest": "^26.6.3",
49     "stylelint": "^13.13.1",
50     "stylelint-config-recommended-scss": "^4.2.0",
51     "stylelint-config-standard": "^22.0.0",
52     "stylelint-scss": "^3.19.0"
53   },
54   "resolutions": {
55     "kind-of": "^6.0.3",
56     "lodash": "^4.17.21"
57   },
58   "scripts": {
59     "postinstall": "yarn run build",
60     "build": "yarn run css-compile --style=compressed && yarn run css-rtl && yarn run css-prefix && 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 setup/scss:setup",
62     "css-lint": "stylelint -s scss \"themes/**/scss/*.scss\" \"setup/scss/*.scss\"",
63     "css-prefix": "postcss themes/*/css/*.css setup/styles.css --use autoprefixer --replace",
64     "css-rtl": "yarn run rtlcss -c .rtlcssrc.json themes/bootstrap/css/theme.css && yarn run rtlcss -c .rtlcssrc.json themes/pmahomme/css/theme.css && yarn run rtlcss -c .rtlcssrc.json themes/original/css/theme.css && yarn run rtlcss -c .rtlcssrc.json themes/metro/css/theme.css && yarn run rtlcss -c .rtlcssrc.json themes/metro/css/blueeyes-theme.css && yarn run rtlcss -c .rtlcssrc.json themes/metro/css/mono-theme.css && yarn run rtlcss -c .rtlcssrc.json themes/metro/css/redmond-theme.css && yarn run rtlcss -c .rtlcssrc.json themes/metro/css/teal-theme.css",
65     "js-lint": "eslint js/src test/javascript test/jest jest.config.js",
66     "js-compile": "babel js/src -d js/dist",
67     "test": "jest"
68   }