-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 857 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
{
"name": "magexpressbackend",
"version": "1.0.0",
"description": "A bugtracker application for managament purposes (\"Collabration\")",
"main": "main.js",
"scripts": {
"start": "node main.js",
"migrate": "npx sequelize-cli db:migrate",
"down": "npx sequelize-cli db:migrate:undo:all",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Saibaba Alapati",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"config": "^3.3.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"pg": "^8.7.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13"
}
}