forked from mongo-express/mongo-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.47 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
{
"version": "0.49.0",
"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",
"body-parser": "^1.18.3",
"busboy": "^0.2.13",
"cli-color": "^1.1.0",
"commander": "^2.9.0",
"cookie-parser": "1.4.3",
"cross-env": "^3.2.4",
"csurf": "1.9.0",
"errorhandler": "1.4.3",
"express": "4.16.3",
"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": "2.2.24",
"morgan": "^1.9.0",
"serve-favicon": "^2.5.0",
"swig-templates": "2.0.2",
"update-notifier": "1.0.2"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.24.1",
"bootstrap": "^3.3.7",
"chai": "3.5.0",
"clean-webpack-plugin": "^0.1.15",
"codemirror": "^5.23.0",
"concurrently": "^3.3.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "~3.9.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-lodash": "^2.3.5",
"jquery": "^3.1.1",
"mocha": "^5.2.0",
"nodemon": "^1.11.0",
"pre-commit": "1.1.3",
"renderjson": "dozoisch/renderjson#cd0ef870c1298d53f09555da54e4bf57a0d21414",
"supertest": "^3.0.0",
"webpack": "^2.4.1"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"license": "MIT",
"scripts": {
"lint": "eslint .",
"start": "cross-env NODE_ENV=production node app",
"start-dev": "concurrently --kill-others \"nodemon app\" \"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"
}