-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.29 KB
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"start-server": "nodemon index.js",
"build": "webpack",
"watcher": "webpack --watch",
"test": "jest --passWithNoTests"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@octokit/graphql": "^8.1.1",
"@socket.io/redis-streams-adapter": "^0.2.2",
"argon2": "^0.41.1",
"axios": "^1.7.2",
"bull": "^4.15.1",
"connect-redis": "^7.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csrf": "^3.1.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-ejs-layouts": "^2.5.1",
"express-rate-limit": "^7.4.0",
"express-session": "^1.18.0",
"express-validator": "^7.1.0",
"ipinfo": "^1.5.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.4",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"nodemon": "^3.1.3",
"redis": "^4.6.15",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"babel-loader": "^9.1.3",
"cypress": "^13.13.1",
"jest": "^29.7.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}