You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.8 KiB
106 lines
2.8 KiB
3 years ago
|
{
|
||
|
"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"
|
||
|
}
|