-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.14 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-next-auth",
"version": "3.0.3",
"description": "This is for next.js app to be used as jwt authratzation",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p .",
"dev": "npm run build && yalc publish && cd examples/test && yalc add jwt-next-auth &&yalc update && npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umeshramya/jwt-next-auth.git"
},
"keywords": [
"next.js",
"jwt",
"auth"
],
"author": "Dr Umesh R Bilagi",
"license": "ISC",
"bugs": {
"url": "https://github.com/umeshramya/jwt-next-auth/issues"
},
"homepage": "https://github.com/umeshramya/jwt-next-auth#readme",
"dependencies": {
"cookies": "^0.8.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/cookie": "^0.4.0",
"@types/cookies": "^0.7.6",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.169",
"@types/next": "^9.0.0",
"@types/node": "^14.14.37",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^4.2.3"
}
}