-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1022 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
38
39
{
"type": "module",
"name": "blog-website",
"version": "1.0.0",
"description": "A CRUD app built with NodeJS, MongoDB and EJS.",
"main": "app.js",
"scripts": {
"dev": "nodemon app",
"test": "NODE_ENV=test mocha -- --detectOpenHandles --runInBand --timeout 20000 || true",
"test-with-coverage": "nyc --reporter=text mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.0.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-ejs-layouts": "^2.5.1",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"mongoose": "^7.0.3",
"morgan": "^1.10.0",
"node-cache": "^5.1.2",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"ws": "^8.14.2"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"mocha": "^10.2.0",
"mongodb": "^5.1.0",
"mongodb-memory-server": "^8.12.1",
"nyc": "^15.1.0"
}
}