-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.72 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
{
"name": "file-storage-service",
"version": "1.0.0",
"description": "Безопасный сервис для управления файлами, включающий аутентификацию пользователей на основе JWT и работу с файлами, с использованием MySQL в качестве базы данных. Сервис предоставляет эндпоинты для регистрации пользователей, входа, обновления токенов и операций с файлами, включая загрузку, скачивание, обновление и удаление.",
"main": "./build/index.js",
"scripts": {
"build": "node node_modules/typescript/bin/tsc",
"start": "node build/index.js",
"dev": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/a-abdurazzoq/file-storage-service.git"
},
"author": "Abdurazzoq Abdullayev",
"license": "MIT",
"bugs": {
"url": "https://github.com/a-abdurazzoq/file-storage-service/issues"
},
"homepage": "https://github.com/a-abdurazzoq/file-storage-service#readme",
"dependencies": {
"@prisma/client": "^5.21.1",
"@redis/client": "^1.6.0",
"bcryptjs": "^2.4.3",
"dotenv": "16.4.5",
"express": "4.21.1",
"inversify": "^6.0.3",
"jsonwebtoken": "9.0.2",
"multer": "1.4.5-lts.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "9.0.7",
"@types/multer": "^1.4.12",
"@types/node": "20.17.1",
"prisma": "^5.21.1",
"source-map-support": "0.5.21",
"typescript": "5.6.3"
}
}