-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 970 Bytes
/
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
{
"name": "Node-Mongo-Blog",
"version": "1.0.0",
"description": "a simple blog app",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cls && npm run open && nodemon server.js",
"open": "start http://localhost:3355/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ambujbpl/nodeMongoBlog.git"
},
"author": "Ambuj Dubey",
"license": "ISC",
"bugs": {
"url": "https://github.com/ambujbpl/nodeMongoBlog/issues"
},
"homepage": "https://github.com/ambujbpl/nodeMongoBlog.gite#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"cookie-parser": "^1.4.5",
"ejs": "^3.1.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.9.10",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"validator": "^13.1.1"
},
"devDependencies": {
"concurrently": "^5.3.0",
"http-server": "^0.12.3"
}
}