forked from mongo-express/mongo-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3 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
106
107
108
109
{
"version": "1.0.0",
"author": "https://github.com/mongo-express",
"name": "mongo-express",
"type": "module",
"description": "Web-based admin interface for MongoDB",
"keywords": [
"admin",
"administration",
"collection",
"database",
"GUI",
"interface",
"manage",
"manage-mongo",
"mongo",
"mongodb",
"phpmyadmin",
"UI",
"web-based"
],
"bin": "./app.js",
"repository": {
"type": "git",
"url": "git://github.com/mongo-express/mongo-express.git"
},
"dependencies": {
"@fastify/busboy": "^2.1.0",
"@json2csv/plainjs": "^7.0.4",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.20.2",
"bootstrap-paginator": "github:rtritto/bootstrap-paginator#develop",
"bson": "^6.2.0",
"cli-color": "^2.0.3",
"commander": "^11.1.0",
"cookie-parser": "1.4.6",
"csurf": "1.11.0",
"dotenv": "^16.3.1",
"errorhandler": "1.5.1",
"express": "^4.18.2",
"express-fileupload": "^1.4.3",
"express-session": "^1.17.3",
"flat": "^5.0.2",
"free-swig": "^1.5.4",
"gridfs-stream": "^1.1.1",
"html-entities": "^2.4.0",
"lodash-es": "^4.17.21",
"memorystore": "^1.6.7",
"method-override": "^3.0.0",
"mongodb": "^6.3.0",
"mongodb-query-parser": "github:rtritto/query-parser#4.0.0-fix-bindata",
"morgan": "^1.10.0",
"nyc": "^15.1.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.7",
"@cypress/code-coverage": "^3.12.13",
"assets-webpack-plugin": "^7.1.1",
"babel-loader": "^9.1.3",
"bootstrap": "^3.3.7",
"chai": "^4.3.10",
"clean-webpack-plugin": "^4.0.0",
"codemirror": "^5.58.2",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^11.0.0",
"cypress": "^13.6.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-unicorn": "^49.0.0",
"jquery": "^3.7.1",
"mocha": "^10.2.0",
"mongodb-memory-server": "^9.1.1",
"node-html-parser": "^6.1.12",
"nodemon": "^3.0.1",
"pre-commit": "1.2.2",
"renderjson": "github:rtritto/renderjson#develop",
"supertest": "^6.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=18.12.0 || >=20.0.0",
"npm": ">=3.0.0"
},
"license": "MIT",
"scripts": {
"lint": "eslint .",
"start": "NODE_ENV=production yarn node app.js",
"start-dev": "concurrently --kill-others \"nodemon app.js --watch lib\" \"yarn build-dev\"",
"build-dev": "webpack --watch",
"build": "NODE_ENV=production webpack",
"test": "yarn mocha && yarn lint",
"cy:run": "cypress run",
"mocha": "NODE_ENV=test mocha",
"test-watch": "NODE_ENV=test mocha --watch --reporter spec",
"prepublish": "yarn build"
},
"pre-commit": [
"test"
],
"exports": "./middleware",
"browserslist": "defaults",
"packageManager": "[email protected]"
}