forked from cmda-minor-web/real-time-web-2021
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 920 Bytes
/
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
{
"name": "chatroom",
"version": "1.0.0",
"description": "Voor het vak Realtime Web gaan we samen een basic Chatroom app maken. Deze app gaan we maken met Node.js, Express en Socket.io.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Inevdhoven/chatroom.git"
},
"type": "module",
"author": "Eva Zaadnoordijk, Pip Harsveld, Ine van den Hoven",
"license": "ISC",
"bugs": {
"url": "https://github.com/Inevdhoven/chatroom/issues"
},
"homepage": "https://github.com/Inevdhoven/chatroom#readme",
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"express": "^4.18.2",
"http": "^0.0.1-security",
"nodemon": "^2.0.22",
"socket.io": "^4.6.1"
}
}