-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.8 KB
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
{
"name": "pgadmin-www",
"version": "1.0.0",
"description": "pgAdmin Website",
"repository": "https://github.com/pgadmin-org/pgaweb.git",
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"photoswipe": "^5.4.4"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-async-to-generator": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/runtime": "^7.23.0",
"@fortawesome/fontawesome-free": "^6.5.0",
"@fortawesome/fontawesome-svg-core": "^6.5.0",
"@fortawesome/free-brands-svg-icons": "^6.5.0",
"@fortawesome/free-solid-svg-icons": "^6.5.0",
"autoprefixer": "^10.4.0",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"critical": "^5.3.0",
"css-loader": "^6.8.0",
"eslint": "^8.50.0",
"file-loader": "^6.2.0",
"imagemin-webpack-plugin": "^2.4.2",
"mini-css-extract-plugin": "^2.7.0",
"postcss": "^8.4.0",
"postcss-loader": "^7.3.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.0",
"sass-loader": "^13.3.0",
"url-loader": "^4.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack --config ./webpack.prod.js --node-env development --mode=development",
"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": "npx eslint --no-eslintrc -c .eslintrc.js --ext .js .",
"pep8": "pycodestyle --config=./.pycodestyle ."
},
"author": "Dave Page",
"license": "PostgreSQL"
}