-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.98 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.98 KB
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
{
"name": "express-file-wizardry",
"version": "2.1.2",
"description": "Flexible and extensible Express middleware for handling file uploads. Written in Typescript with support for various storage engines.",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p . && tsc-alias",
"lint": "eslint . --ext .ts",
"test": "jest --watchAll --verbose --coverage",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devfresher/express-file-wizardry.git"
},
"readme": "./README.md",
"keywords": [
"amazons3",
"google-cloud",
"disk-storage",
"express",
"multer",
"file-upload",
"middleware"
],
"author": "Usman Soliu (devFresher)",
"license": "MIT",
"bugs": {
"url": "https://github.com/devfresher/express-file-wizardry/issues"
},
"homepage": "https://github.com/devfresher/express-file-wizardry#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/multer": "^1.4.11",
"@types/multer-s3": "^3.0.3",
"@types/node": "^20.11.17",
"@types/supertest": "^2.0.16",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.470.0",
"@google-cloud/storage": "^7.7.0",
"aws-sdk": "^2.1516.0",
"cloudinary": "^1.41.0",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"multer-storage-cloudinary": "^4.0.0"
}
}