forked from mongo-express/mongo-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"version": "1.0.0-alpha.4",
"author": "https://github.com/mongo-express",
"name": "mongo-express",
"description": "Web-based admin interface for MongoDB",
"keywords": [
"admin",
"administration",
"collection",
"database",
"GUI",
"interface",
"manage",
"manage-mongo",
"mongo",
"mongodb",
"phpmyadmin",
"UI",
"web-based"
],
"bin": {
"mongo-express": "./app.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mongo-express/mongo-express.git"
},
"dependencies": {
"basic-auth-connect": "^1.0.0",
"bluebird": "^3.7.2",
"body-parser": "^1.18.3",
"bson": "^4.2.0",
"busboy": "^0.2.13",
"cli-color": "^2.0.0",
"commander": "^2.9.0",
"cookie-parser": "1.4.4",
"cross-env": "^7.0.3",
"csurf": "1.10.0",
"errorhandler": "1.5.1",
"express": "4.17.1",
"express-fileupload": "^0.4.0",
"express-session": "^1.15.6",
"flat": "^2.0.1",
"gridfs-stream": "^1.1.1",
"json2csv": "^3.7.1",
"lodash": "~4.17.4",
"method-override": "^2.3.10",
"mongodb": "^3.6.2",
"mongodb-query-parser": "^2.1.2",
"morgan": "^1.9.0",
"patch-package": "^6.4.7",
"serve-favicon": "^2.5.0",
"swig-templates": "2.0.3",
"update-notifier": "5.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"assets-webpack-plugin": "^7.1.1",
"babel-loader": "^8.2.3",
"bootstrap": "^3.3.7",
"chai": "^4.3.4",
"clean-webpack-plugin": "^4.0.0",
"codemirror": "^5.23.0",
"concurrently": "^6.3.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-lodash": "^7.1.0",
"jquery": "^3.5.1",
"mocha": "^9.1.3",
"nodemon": "^2.0.14",
"pre-commit": "1.2.2",
"renderjson": "dozoisch/renderjson#cd0ef870c1298d53f09555da54e4bf57a0d21414",
"supertest": "^6.1.6",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
},
"resolutions": {
"**/event-stream": "^4.0.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0",
"npm": ">=3.0.0"
},
"license": "MIT",
"scripts": {
"postinstall": "patch-package",
"lint": "eslint .",
"start": "cross-env NODE_ENV=production node app",
"start-dev": "concurrently --kill-others \"nodemon app --watch lib\" \"npm run build-dev\"",
"build-dev": "webpack --watch",
"build": "cross-env NODE_ENV=production webpack",
"test": "npm run mocha && npm run lint",
"mocha": "cross-env NODE_ENV=test mocha",
"test-watch": "cross-env NODE_ENV=test mocha --watch --reporter spec",
"prepublish": "npm run build"
},
"pre-commit": [
"test"
],
"main": "./middleware",
"browserslist": "defaults"
}