forked from rishav394/bloodbank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 829 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
{
"name": "bloodbank",
"version": "1.6.1",
"description": "A simple yet functional and secure Blood Bank Web Application I made for my assigment. Uses Node JS and MongoDB primarily. If you are familiar enough in a beginner level with Node JS and mongoose this is a good project to clone and try to replicate.",
"main": "index.js",
"author": "rishav394",
"scripts": {
"test": "echo 'Error: no test specified'",
"start": "node index.js",
"populate": "node util/populator.js"
},
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"mongoose": "^5.7.5",
"morgan": "^1.9.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"prettier": "^2.1.2"
}
}