-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 2.53 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "payload-oauth2",
"version": "1.0.6",
"type": "module",
"homepage:": "https://payloadcms.com",
"repository": "https://github.com/WilsonLe/payload-oauth2",
"description": "OAuth2 plugin for Payload CMS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"payload",
"cms",
"plugin",
"typescript",
"react",
"oauth2",
"payload-plugin"
],
"files": [
"dist"
],
"scripts": {
"dev": "cd dev && cross-env NODE_OPTIONS=--no-deprecation next dev",
"dev:build": "cross-env NODE_OPTIONS=--no-deprecation next build dev",
"dev:start": "cross-env NODE_OPTIONS=--no-deprecation next start dev",
"build": "tsc",
"test": "cd test && jest --config=./jest.config.js",
"format": "prettier --write src dev",
"payload": "cd dev && cross-env NODE_OPTIONS=--no-deprecation payload",
"dev:lint": "cd dev && cross-env NODE_OPTIONS=--no-deprecation next lint",
"generate:types": "payload generate:types",
"generate:importmap": "payload generate:importmap",
"reinstall": "cross-env NODE_OPTIONS=--no-deprecation rm -rf node_modules && rm pnpm-lock.yaml && pnpm --ignore-workspace install",
"clean": "rimraf dist && rimraf dev/.next",
"prepublishOnly": "pnpm clean && pnpm build",
"prepare": "tsc"
},
"author": "[email protected]",
"license": "MIT",
"peerDependencies": {
"payload": "3.0.0-beta.116"
},
"devDependencies": {
"@libsql/darwin-arm64": "0.4.6",
"@libsql/darwin-x64": "0.4.6",
"@libsql/linux-arm64-gnu": "0.4.6",
"@libsql/linux-arm64-musl": "0.4.6",
"@libsql/linux-x64-gnu": "0.4.6",
"@libsql/linux-x64-musl": "0.4.6",
"@payloadcms/db-sqlite": "3.0.0-beta.116",
"@payloadcms/drizzle": "3.0.0-beta.116",
"@payloadcms/next": "3.0.0-beta.116",
"@payloadcms/richtext-lexical": "3.0.0-beta.116",
"@payloadcms/ui": "3.0.0-beta.116",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@types/jsonwebtoken": "9.0.6",
"@types/react": "18.3.3",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"eslint": "8.56.0",
"eslint-config-next": "14.2.3",
"jest": "29.7.0",
"jsonwebtoken": "9.0.2",
"libsql": "0.4.6",
"next": "15.0.0-canary.160",
"payload": "3.0.0-beta.116",
"prettier": "3.3.2",
"prettier-plugin-organize-imports": "3.2.4",
"puppeteer": "^23.6.0",
"react": "19.0.0-rc-e740d4b1-20240919",
"react-dom": "19.0.0-rc-e740d4b1-20240919",
"rimraf": "5.0.7",
"sharp": "0.33.4",
"tree-kill": "^1.2.2",
"typescript": "5.4.5"
}
}