-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.9 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.9 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
74
75
76
{
"name": "authify",
"version": "1.0.0",
"description": "Easily create and deploy oauth and authentication services",
"main": "index.js",
"scripts": {
"test": "'ts-node' src/tests/app.test.ts",
"build": "tsc -p ./tsconfig.json",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/codewithdripzy/auth.git"
},
"keywords": [
"Authentication",
"Google",
"Auth",
"Facebook",
"Auth",
"Twitter",
"Auth",
"Social",
"Auth",
"oauth",
"authentic",
"authjs"
],
"author": "Bankole Emmanuel <thecodeguyy@gmail.com> (https://authjs.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codewithdripzy/auth/issues"
},
"homepage": "https://github.com/codewithdripzy/auth#readme",
"dependencies": {
"@types/mssql": "^9.1.5",
"@types/oracledb": "^6.5.1",
"@types/pg": "^8.11.6",
"auth-validify": "^1.0.2",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"firebase": "^10.12.1",
"joi": "^17.13.1",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.3.1",
"md5": "^2.3.0",
"mongoose": "^8.4.4",
"mssql": "^11.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.10.2",
"nodemailer": "^6.9.14",
"oracledb": "^6.5.1",
"pg": "^8.12.0",
"redis": "^4.6.14",
"snowflake-sdk": "^1.11.0",
"socket.io": "^4.7.5",
"sqlite3": "^5.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/firebase": "^3.2.1",
"@types/jsonwebtoken": "^9.0.6",
"@types/md5": "^2.3.5",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.11",
"@types/nodemailer": "^6.4.15"
}
}