This repository was archived by the owner on Apr 29, 2026. It is now read-only.
forked from paulweezydesign/add-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.06 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "add-auth",
"version": "1.0.0",
"description": "Authentication system with Node.js, TypeScript, and PostgreSQL",
"main": "dist/index.js",
"scripts": {
"build": "./node_modules/.bin/tsc || npx -p typescript tsc",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"start": "node dist/index.js",
"migrate": "ts-node src/database/migrate.ts",
"migrate:rollback": "ts-node src/database/rollback.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"authentication",
"nodejs",
"typescript",
"postgresql"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/connect-redis": "^0.0.23",
"@types/cookie-parser": "^1.4.9",
"@types/express-session": "^1.18.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.11.30",
"@types/passport": "^1.0.17",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.16",
"@types/pg": "^8.11.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@types/cors": "^2.8.19",
"@types/nodemailer": "^6.4.17",
"bcrypt": "^5.1.1",
"connect-redis": "^9.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csrf": "^3.1.0",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-rate-limit": "^7.5.1",
"express-session": "^1.18.1",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"ioredis": "^5.6.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^7.0.4",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.11.3",
"rate-limit-redis": "^4.2.1",
"redis": "^5.5.6",
"uuid": "^11.1.0",
"winston": "^3.12.0",
"xss": "^1.0.15",
"zod": "^3.22.4"
}
}