forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "phpmyadmin",
"version": "5.1.0-dev",
"description": "A web interface for MySQL and MariaDB",
"repository": "https://github.com/phpmyadmin/phpmyadmin.git",
"author": "The phpMyAdmin Team <developers@phpmyadmin.net> (https://www.phpmyadmin.net/team/)",
"license": "GPL-2.0",
"private": true,
"engines": {
"node": ">=10"
},
"dependencies": {
"blueimp-md5": "^2.15.0",
"bootstrap": "4.5.2",
"codemirror": "5.56.0",
"jqplot": "^1.0.9",
"jquery": "3.5.1",
"jquery-debounce-throttle": "^1.0.6-rc.0",
"jquery-fullscreen-plugin": "^1.1.5",
"jquery-hashchange": "^2.0.0",
"jquery-migrate": "3.3.1",
"jquery-mousewheel": "3.1.13",
"jquery-ui": "1.12.1",
"jquery-ui-timepicker-addon": "1.6.3",
"jquery-uitablefilter": "^1.0.0",
"jquery-validation": "1.19.2",
"jquery.event.drag": "2.2.2",
"js-cookie": "2.2.1",
"ol": "6.4.3",
"popper.js": "^1.16.1",
"sass": "^1.26.3",
"stickyfilljs": "2.1.0",
"tablesorter": "^2.31.3",
"tracekit": "0.4.5",
"u2f-api-polyfill": "0.4.4",
"updated-jqplot": "1.0.9",
"zxcvbn": "4.4.2"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"eslint": "^7.5.0",
"eslint-plugin-compat": "^3.8.0",
"eslint-plugin-no-jquery": "^2.5.0",
"stylelint": "^13.6.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0"
},
"resolutions": {
"kind-of": "^6.0.3",
"lodash": "^4.17.19"
},
"scripts": {
"postinstall": "yarn run --silent css-compile --quiet --style=compressed && yarn run --silent js-compile --quiet",
"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",
"css-lint": "stylelint --syntax scss \"themes/**/scss/*.scss\"",
"js-lint": "eslint js/src",
"js-compile": "babel js/src -d js/dist"
}
}