-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 837 Bytes
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
{
"name": "file-upload-service",
"version": "1.0.0",
"description": "A File Upload Service with Node.js, Express, and TypeScript",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc",
"postinstall": "npm run build"
},
"dependencies": {
"@azure/storage-blob": "^12.25.0",
"@google-cloud/storage": "^7.13.0",
"aws-sdk": "^2.1691.0",
"clamscan": "^2.4.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"multer": "^1.4.5-lts.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/clamscan": "^2.0.8",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.12",
"@types/uuid": "^8.3.3",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}