-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.36 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cms-blog",
"version": "1.0.0",
"description": "It helps to create blog posts, and users can also comments the specific blog posts",
"main": "./server/app.js",
"scripts": {
"client:install": "cd client && yarn install",
"client": "cd client && yarn start",
"build": "cd client && yarn build",
"heroku-postbuild": "yarn client:install && yarn build",
"vercel-build": "yarn client:install && yarn build",
"server": "cross-env NODE_ENV=development nodemon server/app.js",
"prod": "NODE_ENV=production node server/app.js",
"dev": "run-p server client",
"dev:concurrently": "concurrently -n 'server, client' -c 'red, green' \"npm run server\" \"npm run client\""
},
"keywords": [
"passport",
"jwt",
"authentication",
"oauth",
"react",
"blog",
"mongoose",
"nodejs",
"backend",
"frontend"
],
"author": "Paalamugan",
"license": "ISC",
"dependencies": {
"async": "^3.2.0",
"aws-sdk": "^2.907.0",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"compression": "^1.7.4",
"connect-mongo": "^4.4.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"csurf": "^1.11.0",
"disposable-email-domains": "^1.0.57",
"dompurify": "^2.2.8",
"dotenv": "^9.0.2",
"email-templates": "^8.0.4",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-limiter": "^1.6.1",
"express-session": "^1.17.1",
"helmet": "^4.6.0",
"jsdom": "^16.5.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"marked": "^2.0.3",
"moment": "^2.29.1",
"mongoose": "^5.6.13",
"mongoose-aliasfield": "^0.3.7",
"mongoose-slug-updater": "^3.3.0",
"mongoose-timestamp": "^0.6.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.6.0",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"s3-upload-stream": "^1.0.7",
"validator": "^13.6.0"
},
"devDependencies": {
"concurrently": "^6.1.0",
"cross-env": "^7.0.3",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": "^14.15.3",
"npm": "^6.14.9",
"yarn": "^1.22.17"
},
"nodemonConfig": {
"legacyWatch": true,
"delay": "1500",
"watch": [
"server"
]
}
}