-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "lookposting",
"version": "1.0.0",
"description": "LookPosting portal with Node.js, Mongoose Handlebars",
"main": "index.js",
"scripts": {
"dev": "nodemon ./index",
"debug": "concurrently \"npm run dev\" \"npm run watch\"",
"watch": "webpack -w --mode development",
"start": "node ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmRodr/lookposting.git"
},
"author": "Emanuel Rodriguez",
"license": "ISC",
"bugs": {
"url": "https://github.com/EmRodr/lookposting/issues"
},
"homepage": "https://github.com/EmRodr/lookposting#readme",
"dependencies": {
"@handlebars/allow-prototype-access": "^1.0.5",
"axios": "^1.6.7",
"bcrypt": "^5.1.1",
"concurrently": "^8.2.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.2",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"express-session": "^1.17.3",
"express-validator": "^5.3.1",
"http-errors": "^2.0.0",
"mongoose": "^8.1.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.9",
"nodemailer-express-handlebars": "^6.1.0",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"shortid": "^2.2.16",
"slug": "^8.2.3",
"sweetalert2": "^11.10.4"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"babel-loader": "^9.1.3",
"nodemon": "^3.0.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}