-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"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 \" ",
"dev": "nodemon ./index.js",
"start": "node ./index.js",
"watch": "webpack --w --mode development"
},
"author": "Jorge Alberto Barcos",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"bcrypt-nodejs": "0.0.3",
"concurrently": "^5.0.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"express-validator": "^5.3.1",
"html-to-text": "^5.1.1",
"juice": "^5.2.0",
"mysql2": "^1.7.0",
"nodemailer": "^6.3.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pug": "^2.0.4",
"sequelize": "^5.21.0",
"shortid": "^2.2.15",
"slug": "^1.1.0",
"sweetalert2": "^8.18.6"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"nodemon": "^1.19.4",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
}
}