-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.15 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
{
"name": "node-auth-kit",
"version": "1.0.3",
"description": "Device-based authentication and authorization for Node.js with Prisma and Mongoose adapters",
"author": "Yogendra Prajapati",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/deviceAuth.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"authentication",
"authorization",
"device-auth",
"jwt",
"nodejs",
"express",
"prisma",
"mongoose"
],
"repository": {
"type": "git",
"url": "git+https://github.com/learningyogendra-netizen/device_auth.git"
},
"bugs": {
"url": "https://github.com/learningyogendra-netizen/device_auth/issues"
},
"dependencies": {
"bcrypt": "^6.0.0",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.0.2"
},
"peerDependencies": {
"@prisma/client": "^4.7.1 || ^5.0.0"
},
"devDependencies": {
"typescript": "^5.9.3",
"@types/express": "^4.17.21",
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10"
}
}