forked from tomashco/payload-instagram-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.43 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
{
"name": "payload-instagram-plugin",
"version": "0.0.9",
"type": "module",
"homepage:": "https://github.com/tomashco/payload-instagram-plugin",
"repository": "[email protected]:tomashco/payload-instagram-plugin.git",
"description": "Instagram plugin for Payload CMS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"payload",
"cms",
"plugin",
"typescript",
"react",
"Instagram"
],
"scripts": {
"dev": "cd dev && cross-env NODE_OPTIONS=--no-deprecation next dev --turbo",
"build": "tsc",
"test": "cd test && jest --config=./jest.config.js",
"lint": "eslint src",
"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",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm clean && pnpm build"
},
"author": "[email protected]",
"license": "MIT",
"peerDependencies": {
"@tanstack/react-query": "^5.40.0",
"axios": "^1.7.2",
"payload": "beta"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.40.0",
"@payloadcms/db-mongodb": "3.0.0-beta.36",
"@payloadcms/eslint-config": "^1",
"@payloadcms/next": "3.0.0-beta.36",
"@payloadcms/richtext-lexical": "3.0.0-beta.36",
"@payloadcms/ui": "3.0.0-beta.36",
"@swc/jest": "^0.2.36",
"@tanstack/react-query": "^5.40.0",
"@types/jest": "^29.5.11",
"@types/node": "20.12.12",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"axios": "^1.7.2",
"cross-env": "^7.0.3",
"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.7.0",
"next": "15.0.0-rc.0",
"payload": "3.0.0-beta.36",
"prettier": "^2.7.1",
"react": "19.0.0-rc-f994737d14-20240522",
"react-dom": "19.0.0-rc-f994737d14-20240522",
"react-player": "^2.16.0",
"sharp": "^0.33.3",
"typescript": "^5.4.2"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}