forked from huggingface/Mongoku
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.46 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.0",
"license": "MIT",
"author": "Anthony Moi <[email protected]>",
"keywords": [
"MongoDB",
"administration",
"explore",
"query"
],
"repository": {
"type": "git",
"url": "https://github.com/hola/Mongoku.git"
},
"dependencies": {
"body-parser": "^1.19.0",
"bson": "1.1.4",
"chalk": "^4.1.0",
"commander": "^7.1.0",
"cookie-parser": "1.4.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"figlet": "^1.3.0",
"memorystore": "^1.6.5",
"mongodb": "3.6.12",
"@seald-io/nedb": "4.0.4",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tslib": "^2.1.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/figlet": "^1.2.1",
"@types/mongodb": "3.6.12",
"@types/node": "^14.14.31",
"typescript": "^4.2.2"
},
"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"
},
"bin": {
"mongoku": "./dist/cli.js"
},
"files": [
"/dist"
]
}