-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dype",
"version": "1.0.1",
"description": "A content Management System",
"main": "app.js",
"scripts": {
"test": "just test",
"start": "nodemon --exec babel-node src/app.js",
"build": "babel src --out-dir dist",
"serve": "node dist/app.js"
},
"keywords": [
"blog",
"article",
"magazine",
"medium"
],
"type": "module",
"author": "naskko tech",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.6.3",
"aws-sdk": "^2.553.0",
"bcrypt-nodejs": "0.0.3",
"cloudinary": "^1.16.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"ejs": "^2.7.1",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.0",
"express-validator": "^5.3.1",
"formidable": "^1.2.1",
"helmet": "^3.21.2",
"html-to-text": "^5.1.1",
"http-errors": "^1.7.3",
"moment": "^2.24.0",
"mongoose": "^5.7.6",
"morgan": "^1.9.1",
"node-cron": "^2.0.3",
"nodemailer": "^6.3.1",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"passport-vkontakte": "^0.3.2",
"request": "^2.88.0"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"nodemon": "^1.19.4"
}
}