forked from mongo-express/mongo-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.26 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
{
"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": {
"basic-auth-connect": "^1.0.0",
"body-parser": "^1.20.1",
"bootstrap-paginator": "github:rtritto/bootstrap-paginator#develop",
"bson": "^4.7.0",
"busboy": "^1.6.0",
"cli-color": "^2.0.3",
"commander": "^2.9.0",
"cookie-parser": "1.4.6",
"csurf": "1.11.0",
"dotenv": "^16.0.3",
"errorhandler": "1.5.1",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-session": "^1.17.3",
"flat": "^5.0.2",
"free-swig": "^1.5.2",
"gridfs-stream": "^1.1.1",
"html-entities": "^2.3.3",
"json2csv": "^5.0.7",
"lodash-es": "^4.17.21",
"memorystore": "^1.6.7",
"method-override": "^3.0.0",
"mongodb": "^4.13.0",
"mongodb-query-parser": "patch:mongodb-query-parser@npm%3A2.4.6#~/.yarn/patches/mongodb-query-parser-npm-2.4.6-234abad2fc.patch",
"morgan": "^1.10.0",
"nyc": "^15.1.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@cypress/code-coverage": "^3.10.0",
"assets-webpack-plugin": "^7.1.1",
"babel-loader": "^9.1.2",
"bootstrap": "^3.3.7",
"chai": "^4.3.7",
"clean-webpack-plugin": "^4.0.0",
"codemirror": "^5.58.2",
"concurrently": "^7.6.0",
"copy-webpack-plugin": "^11.0.0",
"cypress": "^12.5.1",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-unicorn": "^45.0.2",
"jquery": "^3.6.3",
"mocha": "^10.2.0",
"mongodb-memory-server": "^8.11.4",
"node-html-parser": "^6.1.4",
"nodemon": "^2.0.20",
"pre-commit": "1.2.2",
"renderjson": "patch:renderjson@npm%3A1.4.0#~/.yarn/patches/renderjson-npm-1.4.0-b198ae5f7e.patch",
"supertest": "^6.3.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"engines": {
"node": "^14.17.0 || >=16.0.0 || >=18.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]",
"resolutions": {
"ejson-shell-parser@npm:^1.1.3": "patch:ejson-shell-parser@npm%3A1.1.3#~/.yarn/patches/ejson-shell-parser-npm-1.1.3-6aacdd642d.patch"
}
}