-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.49 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
{
"name": "payload-plugin-cloud-storage",
"version": "1.1.0",
"description": "Remote storage plugin for Payload CMS.",
"main": "dist/index.js",
"author": {
"name": "Richard Vanbergen",
"email": "[email protected]",
"url": "https://github.com/richardvanbergen"
},
"homepage": "https://github.com/richardvanbergen/payload-plugin-cloud-storage",
"sideEffects": false,
"keywords": [
"S3",
"payload",
"typescript",
"cloud",
"storage",
"plugin"
],
"bugs": {
"url": "https://github.com/richardvanbergen/payload-plugin-cloud-storage/issues"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint --ext .js,.ts ./src",
"release": "release-it"
},
"devDependencies": {
"@types/express-fileupload": "^1.1.7",
"@types/jest": "^26.0.24",
"@types/sharp": "^0.28.5",
"@types/streamifier": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"jest": "^27.0.6",
"jest-mock-extended": "^1.0.18",
"release-it": "^14.11.8",
"ts-jest": "^27.0.4",
"typescript": "^4.5.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.23.0",
"cloudinary": "^1.27.1",
"payload": "^0.13.6",
"streamifier": "^0.1.1"
}
}