Translated using Weblate (Breton)
[phpmyadmin.git] / package.json
blobdaccbd6cd1d4bc8996af06e6045154646da30b79
2   "name": "phpmyadmin",
3   "version": "5.1.4-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.15.7",
14     "@babel/core": "^7.15.8",
15     "@babel/preset-env": "^7.15.8",
16     "blueimp-md5": "^2.18.0",
17     "bootstrap": "4.6.1",
18     "codemirror": "5.63.3",
19     "jquery": "3.6.0",
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     "js-cookie": "2.2.1",
30     "kbwood-jquery-svg": "https://github.com/kbwood/svg/archive/1.5.0.tar.gz",
31     "locutus.sprintf": "^2.0.14-code-lts.2",
32     "ol": "6.9.0",
33     "popper.js": "^1.16.1",
34     "sass": "^1.32.8",
35     "stickyfilljs": "2.1.0",
36     "tablesorter": "^2.31.3",
37     "tracekit": "0.4.6",
38     "u2f-api-polyfill": "0.4.4",
39     "updated-jqplot": "1.0.9",
40     "zxcvbn": "4.4.2"
41   },
42   "devDependencies": {
43     "babel-jest": "^26.6.3",
44     "eslint": "^7.32.0",
45     "eslint-plugin-compat": "^3.13.0",
46     "eslint-plugin-no-jquery": "^2.7.0",
47     "jest": "^26.6.3",
48     "stylelint": "^13.13.1",
49     "stylelint-config-recommended-scss": "^4.3.0",
50     "stylelint-config-standard": "^22.0.0",
51     "stylelint-scss": "^3.21.0"
52   },
53   "scripts": {
54     "postinstall": "yarn run build",
55     "build": "yarn run css-compile --style=compressed && yarn run js-compile",
56     "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",
57     "css-lint": "stylelint --syntax scss \"themes/**/scss/*.scss\"",
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   }