-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 900 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
{
"name": "catan",
"version": "1.0.0",
"description": "Free to play multiplayer catan style board game",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npx nodemon index.js -w index.js -w views -w models -e js,html",
"deploy-shuffler": "sh ./deploy-gh-pages.sh",
"dev-static": "sh ./dev-static-pages.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigomega/catan.git"
},
"author": "bigomega",
"license": "MIT",
"bugs": {
"url": "https://github.com/bigomega/catan/issues"
},
"homepage": "https://github.com/bigomega/catan#readme",
"dependencies": {
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"mustache-express": "^1.3.2",
"nodemon": "^3.0.3",
"push-dir": "^0.4.1",
"random-words": "^2.0.1",
"socket.io": "^4.7.5"
}
}