-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 957 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 957 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
33
34
35
36
37
{
"name": "uploader",
"version": "1.0.0",
"main": "server.ts",
"scripts": {
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"build": "tsc && cp -r src/views dist/views && cp -r public dist/public"
},
"keywords": ["uploader-file"],
"author": "Tio",
"license": "ISC",
"description": "Uploader File To Telegram",
"dependencies": {
"@types/express": "^5.0.1",
"@types/express-rate-limit": "^5.1.3",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/pug": "^2.0.10",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"form-data": "^4.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.2",
"pug": "^3.0.3",
"sanitize-filename": "^1.6.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^22.15.3",
"nodemon": "^3.1.10"
}
}