-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 892 Bytes
/
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
{
"name": "auth-cookie-storage",
"version": "0.0.2",
"author": "Luiz Felipe Moureau",
"license": "MIT",
"homepage": "https://github.com/mococa/auth-cookie-storage",
"repository": {
"url": "https://github.com/mococa/auth-cookie-storage.git"
},
"main": "dist",
"module": "dist",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc --build tsconfig.json",
"watch": "tsc -w",
"prepublishOnly": "npm run build"
},
"dependencies": {
"cookie": "^0.5.0",
"date-fns": "^2.30.0",
"jwt-decode": "^3.1.2"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/date-fns": "^2.6.0",
"@types/jwt-decode": "^3.1.0",
"@types/node": "^16.14.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"keywords": [
"react",
"nextjs",
"authentication",
"cognito"
]
}