-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 948 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
36
37
38
39
40
{
"name": "koa-bp",
"version": "1.0.0",
"description": "koa api basics, authentication with jwt, encrypting passwords with bcrypt, and persisting data with mysql",
"main": "server.js",
"scripts": {
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rudolphh/koa-bp.git"
},
"keywords": [
"koa",
"api",
"jwt",
"bcrypt",
"mysql"
],
"author": "Rudy A. Hernandez",
"license": "ISC",
"bugs": {
"url": "https://github.com/rudolphh/koa-bp/issues"
},
"homepage": "https://github.com/rudolphh/koa-bp#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.3",
"koa-body": "^4.2.0",
"koa-compose": "^4.1.0",
"koa-jwt": "^4.0.3",
"koa-mount": "^4.0.0",
"koa-router": "^10.1.1",
"koa-send": "^5.0.1",
"koa-static": "^5.0.0",
"mysql2": "^2.3.0"
}
}