-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
{
"name": "server",
"version": "1.0.1",
"main": "dist/server.js",
"type": "module",
"license": "MIT",
"scripts": {
"build": "npx tsc",
"start": "nodemon dist/server.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon dist/server.js\""
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/figlet": "^1.5.6",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^20.3.1",
"@types/node-cron": "^3.0.7",
"@types/nodemailer": "^6.4.8",
"@types/uuid": "^9.0.2",
"concurrently": "^8.2.0",
"nodemon": "^2.0.22",
"pm2": "^5.3.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@socket.io/cluster-adapter": "^0.2.2",
"@socket.io/sticky": "^1.0.3",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.7.0",
"fastest-validator": "^1.17.0",
"figlet": "^1.6.0",
"helmet": "^7.0.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.4.0",
"node-cache": "^5.1.2",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.3",
"otplib": "^12.0.1",
"sequelize": "^6.32.1",
"socket.io": "^4.6.2",
"uuid": "^9.0.0",
"winston": "^3.9.0"
},
"description": "This GitHub repository provides an initial setup for a Node.js server. It serves as a foundation for building web applications and APIs using Node.js, Express, and TypeScript. The setup includes essential libraries and configurations for handling HTTP requests, logging, error handling, and more..",
"repository": {
"type": "git",
"url": "git+https://github.com/nextyfine-dev/Next-Chat-Server.git.git"
},
"keywords": [
"nodejs",
"initial",
"server",
"setup"
],
"author": "Nextyfine",
"bugs": {
"url": "https://github.com/nextyfine-dev/Next-Chat-Server.git/issues"
},
"homepage": "https://github.com/nextyfine-dev/Next-Chat-Server.git#readme"
}