forked from huggingface/Mongoku
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "@hola.org/mongoku",
"version": "1.4.4-hola.1",
"license": "MIT",
"author": "Anthony Moi <m.anthony.moi@gmail.com>",
"keywords": [
"MongoDB",
"administration",
"explore",
"query"
],
"repository": {
"type": "git",
"url": "https://github.com/huggingface/Mongoku.git"
},
"dependencies": {
"body-parser": "^1.19.1",
"chalk": "^5.4.0",
"cookie-parser": "^1.4.7",
"commander": "^8.3.0",
"express": "^4.17.2",
"express-session": "^1.18.1",
"figlet": "^1.5.2",
"memorystore": "^1.6.7",
"mongodb": "^5.9.2",
"@seald-io/nedb": "^4.0.4",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/commander": "^2.12.5",
"@types/express": "^4.17.13",
"@types/express-session": "^1.18.1",
"@types/figlet": "^1.5.4",
"@types/mongodb": "^4.0.7",
"@types/node": "^14.14.31",
"typescript": "^4.5.4"
},
"main": "./dist/server.js",
"scripts": {
"clean": "rimraf dist",
"start": "npm-run-all --parallel watch:build watch:server --print-label",
"watch:build": "tsc --watch",
"build:app": "cd ./app && npm run build",
"build:server": "tsc",
"build": "npm-run-all --parallel build:app build:server --print-label",
"watch:server": "nodemon /dist/server.js --inspect 0.0.0.0:9017 --watch dist",
"debug-server": "npx tsc -w & npx nodemon --inspect=9017 ./dist/server.js"
},
"bin": {
"mongoku": "./dist/cli.js"
},
"files": [
"/dist"
]
}