-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
45
46
47
48
{
"name": "express-jwt-sequelize-mariadb",
"version": "1.0.0",
"description": "Example of a RESTful API with JWT authentication using MariaDB as database and Sequelize as ORM.",
"main": "app.js",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"db:migrate": "sequelize-cli db:migrate",
"db:seed": "sequelize-cli db:seed:all",
"test": "jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iramirezc/express-jwt-sequelize-mariadb.git"
},
"keywords": [
"Express.js",
"JWT",
"Sequelize",
"MariaDB",
"RESTful",
"API"
],
"author": "Isaac Ramirez <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/iramirezc/express-jwt-sequelize-mariadb/issues"
},
"homepage": "https://github.com/iramirezc/express-jwt-sequelize-mariadb#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-errors": "^1.8.1",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.5",
"morgan": "^1.10.0",
"sequelize": "^6.12.0-alpha.1",
"sequelize-cli": "^6.3.0"
},
"devDependencies": {
"jasmine": "^3.10.0",
"nodemon": "^2.0.15",
"sqlite3": "^5.0.2",
"supertest": "^6.1.6"
}
}