forked from cmda-minor-web/real-time-web-2223
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 816 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
36
37
38
{
"name": "rtw",
"version": "1.0.0",
"description": "Real Time Web website",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -L server.js",
"test:lint": "alex"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/laibaaac/rtw.git"
},
"keywords": [
"express",
"ejs",
"nodemon",
"routing"
],
"author": "Laiba Choudhry",
"license": "MIT",
"bugs": {
"url": "https://github.com/laibaaac/rtw/issues"
},
"homepage": "https://github.com/laibaaac/rtw#readme",
"dependencies": {
"alex": "^11.0.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"socket.io": "^4.6.1"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}