-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.72 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "next-auth-adapter-filemaker",
"version": "2.0.0",
"private": false,
"description": "next-auth Adapter for FileMaker Server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "jest",
"release": "pnpm build && changeset publish --access public"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./dist": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"@proofgeist/fmdapi": "^3.4.1",
"@upstash/redis": "^1.30.0"
},
"peerDependencies": {
"next-auth": "^4.24.7"
},
"jest": {
"preset": "./adapter-test/jest/jest-preset.js"
},
"repository": "git://github.com/proofgeist/next-auth-adapter-filemaker.git",
"author": "Eric <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.24.5",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^26.0.24",
"@types/node": "^17.0.45",
"@types/node-fetch": "^2.6.11",
"@types/nodemailer": "^6.4.15",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^29.7.0",
"next-auth": "^4.24.7",
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"files": [
"/dist"
]
}