-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
43 lines (43 loc) · 935 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
{
"name": "mongoku",
"version": "1.3.0",
"license": "MIT",
"author": "Anthony Moi <[email protected]>",
"keywords": [
"MongoDB",
"administration",
"explore",
"query"
],
"repository": {
"type": "git",
"url": "https://github.com/huggingface/Mongoku.git"
},
"dependencies": {
"@aws-sdk/credential-providers": "^3.592.0",
"aws4": "^1.13.0",
"body-parser": "^1.19.1",
"chalk": "^2.4.2",
"commander": "^8.3.0",
"express": "^4.17.2",
"figlet": "^1.5.2",
"mongodb": "^5.9.2",
"nedb": "^1.8.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/figlet": "^1.5.4",
"@types/mongodb": "^4.0.7",
"@types/nedb": "^1.8.12"
},
"main": "./dist/server.js",
"scripts": {
"debug-server": "npx tsc -w & npx nodemon --inspect=9017 ./dist/server.js"
},
"bin": {
"mongoku": "./dist/cli.js"
},
"files": [
"/dist"
]
}