-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.05 KB
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
{
"name": "warbler",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"seeder": "node ./seeders/_seeder.js -d && node ./seeders/_seeder.js -i"
},
"author": "Kevin Basina",
"license": "MIT",
"dependencies": {
"async": "^3.2.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.22.0",
"cors": "^2.8.5",
"cryptr": "^6.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"helmet": "^4.1.1",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.18",
"multer": "^1.4.2",
"newsapi": "^2.4.1",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.11",
"request-country": "^0.1.5",
"sanitizer": "^0.1.3",
"speakeasy": "^2.0.0",
"validator": "^13.1.1",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"chalk": "^4.1.0",
"cli-spinner": "^0.2.10",
"nodemon": "^2.0.4"
},
"engines": {
"node": "12.18.2",
"npm": "6.14.8"
}
}