-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
{
"name": "codeduel-server",
"version": "1.0.0",
"description": "A dynamic platform for programmers of all skill levels to challenge peers and sharpen their coding prowess.⚔️",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node server/index.ts",
"dev": "nodemon server/index.ts",
"prettier": "prettier --write \"src/**/*.{js,vue}\""
},
"keywords": [],
"author": "eladlevi013",
"license": "ISC",
"dependencies": {
"@types/connect-redis": "^0.0.21",
"@types/redis": "^4.0.11",
"axios": "^1.5.1",
"bcryptjs": "^2.4.3",
"connect-mongo": "^5.0.0",
"connect-redis": "^7.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"mongoose": "^7.5.3",
"nodemon": "^3.0.1",
"redis": "^4.6.10",
"socket.io": "^4.7.2",
"sqlite3": "^5.1.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.4",
"@types/express": "^4.17.18",
"@types/express-session": "^1.17.8",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.4",
"@vue/eslint-config-prettier": "^8.0.0",
"prettier": "^3.0.3"
}
}