-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 943 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
39
40
41
{
"name": "socket-codenames",
"version": "1.0.0",
"description": "Javascript school project with socket.io",
"main": "index.js",
"scripts": {
"test": "node test.js",
"dev": "nodemon -e js,html,css server.js --w",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git https://github.com/Goby56/socket-codenames.git"
},
"keywords": [
"javscript",
"school",
"project",
"socket.io",
"bomb",
"party"
],
"author": "Goby56",
"license": "ISC",
"bugs": {
"url": "https://github.com/Goby56/socket-codenames/issues"
},
"homepage": "https://github.com/Goby56/socket-codenames#readme",
"dependencies": {
"express": "^4.18.1",
"nodemon": "^2.0.20",
"nunjucks": "^3.2.4",
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.4",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jquery": "^3.5.16",
"@types/uuid": "^9.0.0"
}
}