-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 KB
/
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
{
"name": "resistance",
"version": "1.0.0",
"description": "Online multiplayer implementation of resistance game",
"main": "index.js",
"scripts": {
"dev": "GAME_CODE_LENGTH=6 nodemon --inspect --ignore components/ --ignore pages/ --ignore .next/ server.js",
"build": "next build",
"start": "GAME_CODE_LENGTH=6 NODE_ENV=production node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szokeasaurusrex/resistance.git"
},
"author": "Daniel Szoke",
"license": "MIT",
"bugs": {
"url": "https://github.com/szokeasaurusrex/resistance/issues"
},
"homepage": "https://github.com/szokeasaurusrex/resistance#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.8",
"@fortawesome/free-solid-svg-icons": "^5.5.0",
"@fortawesome/react-fontawesome": "^0.1.3",
"@zeit/next-css": "^1.0.1",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"express": "^4.16.4",
"mongodb": "^3.1.10",
"next": "^7.0.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"reactstrap": "^6.5.0",
"socket.io": "^2.1.1"
},
"devDependencies": {
"nodemon": "^1.18.7"
}
}