Translated using Weblate (Macedonian)
[phpmyadmin.git] / package.json
blobcded882f1c6f4ca5b4eb6c728126a4803dc26f4b
2   "name": "phpmyadmin",
3   "version": "5.2.2-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": ">=12"
11   },
12   "dependencies": {
13     "@babel/cli": "^7.22.15",
14     "@babel/core": "^7.22.17",
15     "@babel/preset-env": "^7.22.15",
16     "@popperjs/core": "^2.11.8",
17     "@zxcvbn-ts/core": "^2.0.1",
18     "autoprefixer": "^10.4.15",
19     "bootstrap": "5.3.2",
20     "codemirror": "5.65.10",
21     "jquery": "3.7.1",
22     "jquery-debounce-throttle": "^1.0.6-rc.0",
23     "jquery-migrate": "3.4.1",
24     "jquery-ui-dist": "1.13.2",
25     "jquery-ui-timepicker-addon": "1.6.3",
26     "jquery-uitablefilter": "^1.0.0",
27     "jquery-validation": "1.20.0",
28     "js-cookie": "2.2.1",
29     "locutus.sprintf": "^2.0.14-code-lts.2",
30     "ol": "6.15.1",
31     "postcss": "^8.4.14",
32     "postcss-cli": "^9.1.0",
33     "rtlcss": "^3.5.0",
34     "sass": "1.60.0",
35     "tablesorter": "^2.31.3",
36     "tracekit": "0.4.6",
37     "u2f-api-polyfill": "0.4.4",
38     "updated-jqplot": "1.0.9"
39   },
40   "devDependencies": {
41     "babel-jest": "^27.3.1",
42     "eslint": "^7.32.0",
43     "eslint-plugin-compat": "^3.13.0",
44     "eslint-plugin-no-jquery": "^2.7.0",
45     "jest": "^27.3.1",
46     "stylelint": "^13.13.1",
47     "stylelint-config-recommended-scss": "^4.3.0",
48     "stylelint-config-standard": "^22.0.0",
49     "stylelint-scss": "^3.21.0"
50   },
51   "scripts": {
52     "postinstall": "yarn run build",
53     "build": "yarn run css-compile --style=compressed && yarn run css-prefix && yarn run css-rtl && yarn run js-compile",
54     "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",
55     "css-lint": "stylelint -s scss \"themes/**/scss/*.scss\" \"setup/scss/*.scss\"",
56     "css-prefix": "postcss themes/*/css/*.css setup/styles.css --use autoprefixer --replace",
57     "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",
58     "js-lint": "eslint js/src test/javascript test/jest jest.config.js",
59     "js-compile": "babel js/src -d js/dist",
60     "test": "jest"
61   }