-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 967 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
38
39
{
"name": "@lowfront/firebase-adapter",
"version": "0.2.1",
"description": "Firebase adapter for NextAuth.js using Firebase auth's CustomToken authentication method.",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"dev": "tsc --project tsconfig.cjs.json --watch",
"build": "tsc --project tsconfig.cjs.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"next.js",
"next-auth",
"adapter",
"auth",
"outh",
"firebase",
"firebase-auth",
"custom-token",
"firestore"
],
"homepage": "https://github.com/lowfront/firebase-adapter",
"bugs": {
"url": "https://github.com/lowfront/firebase-adapter/issues"
},
"author": {
"name": "lowfront",
"email": "lowfronterior@gmail.com"
},
"license": "MIT",
"devDependencies": {
"firebase": "^9.9.4",
"firebase-admin": "^11.0.1",
"next": "^12.2.5",
"next-auth": "^4.10.3"
}
}