-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
44 lines (44 loc) · 978 Bytes
/
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
{
"name": "mongo-gui",
"description": "A web-based MongoDB graphical user interface",
"version": "0.0.20",
"main": "server.js",
"license": "MIT",
"keywords": [
"mongodb",
"express",
"admin",
"mongo",
"gui",
"ui",
"user-interface"
],
"homepage": "http://20.106.238.56:4321/",
"bugs": {
"url": "https://github.com/arunbandari/mongo-gui/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/arunbandari/mongo-gui"
},
"scripts": {
"start": "node server.js",
"build-ui": "cd client && npm run clean-build-compress"
},
"dependencies": {
"base-64": "^1.0.0",
"body-parser": "^1.19.0",
"bson": "^4.0.3",
"connect-gzip-static": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"minimist": "^1.2.5",
"mongodb": "^3.6.4",
"openai": "^4.24.1"
},
"bin": {
"mongo-gui": "./server.js"
}
}