-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "jwt-auth",
"version": "0.0.1",
"description": "JWT Authentication API",
"main": "server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"run": "npx tsc && node dist/server.js",
"start": "nodemon server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harvestcore/jwt-auth.git"
},
"keywords": [
"jwt",
"authentication"
],
"author": "Ángel Gómez",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/harvestcore/jwt-auth/issues"
},
"homepage": "https://github.com/harvestcore/jwt-auth",
"dependencies": {
"bcrypt": "^5.0.1",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.4",
"mongoose": "^5.12.2",
"nodemailer": "^6.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
}
}