-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 2.29 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
{
"name": "pgadmin-www",
"version": "1.0.0",
"description": "pgAdmin Website",
"repository": "https://github.com/pgadmin-org/pgaweb.git",
"dependencies": {
"bootstrap": "^4.4.1",
"fotorama": "^4.6.4",
"jquery": "^3.4.1",
"popper.js": "^1.14.7",
"respond.js": "^1.4.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@fortawesome/fontawesome-free": "^5.14.0",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"autoprefixer": "^9.7.5",
"babel-loader": "^8.1.0",
"chokidar": "^3.4.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"critical": "^2.0.0-24",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"file-loader": "^6.0.0",
"glob-all": "^3.2.1",
"imagemin-webpack-plugin": "^2.4.2",
"jpegtran-bin": "^5.0.1",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^8.0.0",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.1.1",
"responsive-loader": "^1.2.0",
"sass-loader": "^13.0.2",
"speed-measure-webpack-plugin": "^1.3.3",
"url-loader": "^4.0.0",
"webp-loader": "^0.6.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-log": "^3.0.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --config ./webpack.dev.js --env.env=dev",
"build": "webpack --config ./webpack.prod.js --node-env production --mode=production && cd static/COMPILED && gzip -f -k -9 *.js && cd ../..",
"build:watch": "webpack --config ./webpack.prod.js --watch --node-env production --mode=production",
"lint": "yarn eslint --no-eslintrc -c .eslintrc.js --ext .js .",
"pep8": "pycodestyle --config=./.pycodestyle ./news && pycodestyle --config=./.pycodestyle ./docs && pycodestyle --config=./.pycodestyle ./pgaweb && pycodestyle --config=./.pycodestyle ./faq && pycodestyle --config=./.pycodestyle ./download",
"perform": "webpack --config ./webpack.perform.js"
},
"author": "Dave Page",
"license": "PostgreSQL"
}