-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 885 Bytes
/
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
{
"name": "tasks-crud-example",
"version": "1.0.0",
"description": "A tasks app example",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js"
},
"keywords": [],
"author": "Francisco De La Hoz",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.6.0",
"connect-flash": "^0.1.1",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-mysql-session": "^2.1.6",
"express-session": "^1.17.1",
"express-validator": "^6.11.1",
"jquery": "^3.6.0",
"mysql": "^2.18.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"popper.js": "^1.16.1",
"pug": "^3.0.2",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"eslint": "^7.26.0",
"nodemon": "^2.0.7"
}
}