-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "connecti",
"version": "1.0.0",
"description": "Connecti project with Node, PostgreSQL and EJS",
"main": "index.js",
"scripts": {
"dev": "nodemon './index.js'",
"development": "concurrently \"npm run dev\" \"npm run watch\"",
"start": "node ./index.js",
"watch": "webpack watch --mode=development",
"db:import": "node ./seed/seeder.js -import",
"db:delete": "node ./seed/seeder.js -delete"
},
"author": "Emanuel Rodriguez",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"babel-loader": "^9.1.3",
"nodemon": "^3.0.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.6.7",
"bcrypt-nodejs": "^0.0.3",
"concurrently": "^8.2.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.4",
"ejs": "^3.1.9",
"express": "^4.21.1",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.18.0",
"express-validator": "^5.3.0",
"leaflet-geosearch": "^2.7.0",
"moment": "^2.30.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.9",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"sequelize": "^6.37.0",
"shortid": "^2.2.16",
"slug": "^8.2.3",
"sweetalert2": "^11.10.6",
"uuid": "^9.0.1"
}
}