-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.23 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npx nodemon --envi=development",
"build": "rimraf ./dist && tsc && tsc-alias",
"start": "node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"keywords": [],
"author": "ttv",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/async": "^3.2.23",
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.17",
"@types/formidable": "^3.4.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.199",
"@types/mime-types": "^2.1.4",
"@types/minimist": "^1.2.4",
"@types/node": "^20.5.1",
"@types/nodemailer": "^6.4.14",
"@types/progress-stream": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"progress-stream": "^2.0.0",
"rimraf": "^5.0.1",
"sanitize-filename": "^1.6.3",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"ytdl-core": "^4.11.5"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.534.0",
"@aws-sdk/client-ses": "^3.525.0",
"@aws-sdk/lib-storage": "^3.534.0",
"@smithy/types": "^2.12.0",
"@socket.io/cluster-adapter": "^0.2.2",
"@socket.io/sticky": "^1.0.4",
"async": "^3.2.5",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.2.0",
"express-validate": "^0.0.8",
"express-validator": "^7.0.1",
"formidable": "^3.5.1",
"helmet": "^7.1.0",
"install": "^0.13.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"minimist": "^1.2.8",
"mongodb": "^6.0.0",
"nodemailer": "^6.9.13",
"sharp": "^0.32.6",
"slash": "^5.1.0",
"socket.io": "^4.7.4",
"tsx": "^4.7.0",
"zx": "^7.2.3"
}
}