-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "devjobs",
"version": "1.0.0",
"description": "DevJobs Portal",
"main": "index.js",
"scripts": {
"devNodemon": "nodemon ./index",
"dev": "concurrently \"npm run devNodemon\" \"npm run watch\" ",
"start": "node ./index.js",
"watch": "webpack -w --mode development"
},
"author": "JOrney Lopez",
"license": "ISC",
"dependencies": {
"axios": "^0.25.0",
"bcrypt": "^5.0.1",
"concurrently": "^6.4.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.4",
"express-session": "^1.17.2",
"express-validator": "^5.3.1",
"handlebars": "^4.7.7",
"http-errors": "^1.8.1",
"mongoose": "^6.0.12",
"multer": "^1.4.4",
"nodemailer": "^6.7.2",
"nodemailer-express-handlebars": "^3.3.0",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"shortid": "^2.2.16",
"slug": "^5.1.0",
"sweetalert2": "^11.3.10"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"babel-loader": "^8.2.3",
"nodemon": "^2.0.14",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1"
}
}