-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
60
61
62
63
64
65
{
"name": "video-upload-service",
"version": "1.0.0",
"main": "src/server.ts",
"lint-staged": {
"src/**/*.ts": "yarn lint-prettier"
},
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/server.ts",
"lint:check": "eslint --c .js,.jsx,.ts,.tsx src",
"lint:fix": "eslint --fix",
"prettier:check": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint-prettier": "yarn lint:check && yarn prettier:check",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Protik",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.10",
"@types/uuid": "^10.0.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
},
"dependencies": {
"@prisma/client": "^5.16.2",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"adm-zip": "^0.5.15",
"axios": "^1.7.3",
"bcrypt": "^5.1.1",
"cloudinary": "^2.3.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"express": "^4.19.2",
"express-rate-limit": "^7.4.0",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"http-status": "^1.7.4",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"prisma": "^5.16.2",
"rate-limit-redis": "^4.2.0",
"redis": "^4.7.0",
"util": "^0.12.5",
"uuid": "^10.0.0",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.23.8"
}
}