forked from lcalderin12/Recipe-Tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (36 loc) · 936 Bytes
/
package.json
File metadata and controls
37 lines (36 loc) · 936 Bytes
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
{
"name": "project-2",
"version": "1.0.0",
"description": "project-2",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"prestart:prod": "npm install",
"start:prod": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lcalderin12/Project-2.git"
},
"author": "luis calderin, eric johnson, shalom dawit",
"license": "Apache V2.0",
"bugs": {
"url": "https://github.com/lcalderin12/Project-2/issues"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"eslint": "^7.14.0",
"express": "^4.17.1",
"express-handlebars": "^5.2.0",
"express-session": "^1.17.1",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.17",
"nodemon": "^2.0.6",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sequelize": "^6.3.5"
}
}