-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "express-sequelize-jwt-starter-kit",
"version": "1.0.0",
"description": "express js sequelize jwt passport strategy starter kit",
"main": "index.js",
"dependencies": {
"bcrypt": "^5.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.9.1",
"helmet": "^4.3.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"nodemon": "^2.0.6",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"rotating-file-stream": "^2.1.3",
"sequelize": "^6.3.5"
},
"devDependencies": {},
"scripts": {
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mln4you/express-jwt-starter.git"
},
"author": "Milan Djordjevic",
"license": "ISC",
"bugs": {
"url": "https://github.com/mln4you/express-jwt-starter/issues"
},
"homepage": "https://github.com/mln4you/express-jwt-starter#readme"
}