-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.14 KB
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": "auth-api",
"version": "2.0.0",
"description": "Secure authentication API written in Node.js with JWT-based sessions",
"main": "auth-module.js",
"exports": {
".": "./auth-module.js",
"./middleware": "./middleware/index.js"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"check": "find . -path ./node_modules -prune -o -name '*.js' -print0 | xargs -0 -n1 node --check",
"test": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NotNexx/Auth-API.git"
},
"keywords": [
"auth",
"api",
"secure",
"jwt",
"postgres"
],
"author": "NotNexx",
"license": "ISC",
"bugs": {
"url": "https://github.com/NotNexx/Auth-API/issues"
},
"homepage": "https://github.com/NotNexx/Auth-API#readme",
"dependencies": {
"argon2": "^0.45.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.6.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"nodemailer": "^9.0.5",
"pg": "^8.11.3"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}