forked from mongo-express/mongo-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.23 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
110
111
112
113
{
"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": {
"@codemirror/commands": "^6.6.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/language": "^6.10.2",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.33.0",
"@fastify/busboy": "^3.0.0",
"@json2csv/plainjs": "^7.0.6",
"@popperjs/core": "^2.11.8",
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.3",
"bootstrap-paginator-2": "^2.0.0",
"bson": "^6.8.0",
"codemirror": "^6.0.1",
"commander": "^12.1.0",
"cookie-parser": "1.4.6",
"cross-env": "^7.0.3",
"csurf": "1.11.0",
"dotenv": "^16.4.5",
"errorhandler": "1.5.1",
"express": "^4.19.2",
"express-fileupload": "^1.5.1",
"express-session": "^1.18.0",
"flat": "^6.0.1",
"free-swig": "^1.5.5",
"gridfs-stream": "^1.1.1",
"html-entities": "^2.5.2",
"jquery": "^3.7.1",
"memorystore": "^1.6.7",
"method-override": "^3.0.0",
"mongodb": "^6.8.0",
"mongodb-query-parser": "^4.2.4",
"morgan": "^1.10.0",
"picocolors": "^1.0.1",
"renderjson": "github:rtritto/renderjson#develop",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-env": "^7.25.4",
"@cypress/code-coverage": "^3.12.46",
"assets-webpack-plugin": "^7.1.1",
"babel-loader": "^9.1.3",
"chai": "^5.1.1",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"cypress": "^13.14.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^55.0.0",
"file-loader": "^6.2.0",
"husky": "^9.1.5",
"mocha": "^10.7.3",
"mongodb-memory-server": "^10.0.0",
"node-html-parser": "^6.1.13",
"nodemon": "^3.1.4",
"style-loader": "^4.0.0",
"supertest": "^7.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=18.18 || >=20 || >=22"
},
"license": "MIT",
"scripts": {
"lint": "eslint .",
"start": "cross-env NODE_ENV=production node app.js",
"start-dev": "concurrently --kill-others \"nodemon app.js --watch lib\" \"webpack --watch\"",
"build-dev": "webpack --watch",
"build": "cross-env NODE_ENV=production webpack",
"test": "cross-env NODE_ENV=test mocha",
"cy:run": "cypress run",
"mocha": "cross-env NODE_ENV=test mocha",
"test-watch": "cross-env NODE_ENV=test mocha --watch --reporter spec",
"prepublish": "cross-env NODE_ENV=production webpack"
},
"exports": "./middleware",
"browserslist": "defaults",
"packageManager": "[email protected]"
}