-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
59 lines (59 loc) · 1.5 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
{
"name": "payload-s3-upload",
"version": "2.1.1",
"description": "Send Payload CMS uploads to Amazon S3",
"keywords": [
"storage",
"s3",
"payload",
"payloadcms",
"payload-cms",
"payloadplugin",
"payload-plugin"
],
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"author": "Jean-Baptiste Martin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jeanbmar/payload-s3-upload.git"
},
"bugs": {
"url": "https://github.com/jeanbmar/payload-s3-upload/issues"
},
"homepage": "https://github.com/jeanbmar/payload-s3-upload#readme",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc -w",
"test": "ts-node -T ./test/plugin.test.ts"
},
"dependencies": {
"sanitize-filename": "^1.6.3"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.x.x",
"payload": "^1.x.x"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.332.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"babel-eslint": "^10.1.0",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"graphql": "^16.6.0",
"mongodb-memory-server": "^8.12.2",
"payload": "^1.8.2",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}