This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "@imcorfitz/payload-plugin-oauth-apps",
"version": "0.3.2",
"homepage": "https://github.com/imcorfitz/payload-plugin-oauth-apps#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/imcorfitz/payload-plugin-oauth-apps.git"
},
"description": "Better refresh token flow for Payload CMS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "cd dev && yarn test",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"clean": "rimraf dist && rimraf dev/yarn.lock",
"release": "yarn build && changeset publish",
"prepublishOnly": "yarn clean && yarn build && cd dev && yarn test"
},
"keywords": [
"payload",
"cms",
"plugin",
"typescript",
"react",
"auth",
"oauth",
"oauth2",
"passport",
"strategy"
],
"author": "[email protected]",
"license": "MIT",
"peerDependencies": {
"payload": "^2.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@payloadcms/eslint-config": "^0.0.1",
"@swc/jest": "^0.2.28",
"@types/express": "^4.17.19",
"@types/jsonwebtoken": "^9.0.3",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"dotenv": "^8.2.0",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.6.2",
"payload": "^2.0.0",
"prettier": "^2.7.1",
"react": "^18.0.0",
"typescript": "^4.8.4",
"webpack": "^5.89.0"
},
"dependencies": {
"node-ipinfo": "^3.4.6"
},
"bugs": {
"url": "https://github.com/imcorfitz/payload-plugin-oauth-apps/issues"
}
}