-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 947 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": "connect-4-brawl",
"version": "1.0.0",
"description": "Live anonymously-matched Connect 4 games",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"dev": "node server.js; nodemon server.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olozzalap/connect-4-brawl.git"
},
"author": "Eben Palazzolo",
"license": "ISC",
"bugs": {
"url": "https://github.com/olozzalap/connect-4-brawl/issues"
},
"homepage": "https://github.com/olozzalap/connect-4-brawl#readme",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"event-stream": "3.3.4",
"express": "^4.16.3",
"mongoose": "^5.2.14",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1"
},
"devDependencies": {
"nodemon": "^1.18.4"
}
}