-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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": "guess_the_word_game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node server",
"dev": "node --watch --env-file=.env server",
"seedGames": "node scripts/createTestGames.js",
"seedFriends": "node scripts/createTestFriends.js",
"seedNotifications": "node scripts/createTestNotifications.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LoayTarek5/Guess_The_Word_Game.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LoayTarek5/Guess_The_Word_Game/issues"
},
"homepage": "https://github.com/LoayTarek5/Guess_The_Word_Game#readme",
"dependencies": {
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"chart.js": "^4.5.0",
"colors": "^1.4.0",
"compression": "^1.8.1",
"connect-mongo": "^5.1.0",
"cookie": "^1.0.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.1.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-ejs-layouts": "^2.5.1",
"express-rate-limit": "^8.0.1",
"express-session": "^1.18.1",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.1",
"multer": "^2.0.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"winston": "^3.17.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}