forked from cmda-minor-web/real-time-web-2223
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 908 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
32
33
34
35
{
"name": "barebonechat",
"version": "1.0.0",
"description": "It's a barebone chat app used as an example in a course on realtime web apps.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ju5tu5/barebonechat.git"
},
"keywords": [
"express",
"socket.io"
],
"author": "Justus Sturkenboom <justus@ju5tu5.nl>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ju5tu5/barebonechat/issues"
},
"homepage": "https://github.com/ju5tu5/barebonechat#readme",
"dependencies": {
"express": "^4.17.1",
"express-handlebars": "^7.0.7",
"http": "^0.0.1-security",
"node-fetch": "^2.6.9",
"socket.io": "^4.0.0"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}