-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "uptasknodejs",
"version": "1.0.0",
"description": "Proyecto UpTask con Node y MVC",
"main": "index.js",
"scripts": {
"desarrollo": "concurrently \"npm run dev\" \"npm run watch\"",
"postinstall": "npm run build",
"start": "node ./index.js",
"dev": "nodemon ./index.js",
"watch": "webpack -w --mode development"
},
"engines": {
"node": ">=14.0.O",
"npm": ">=7.7.0"
},
"author": "Jorney Lopez",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcrypt-nodejs": "^0.0.3",
"concurrently": "^6.2.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"html-to-text": "^8.0.0",
"juice": "^8.0.0",
"mysql2": "^2.3.0",
"nodemailer": "^6.7.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"sequelize": "^6.6.5",
"shortid": "^2.2.16",
"slug": "^5.1.0",
"sweetalert2": "^11.1.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"nodemon": "^2.0.12",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
}
}