-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 KB
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
42
43
44
45
46
47
{
"name": "mapinguari",
"version": "0.0.0",
"description": "Mapinguari - Play online with your friends!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install-dev": "cd backend && npm install && cd ../frontend && npm install",
"start-dev": "node index-dev",
"build": "rm -Rf dist/ && cd backend && npm run build && cd ../frontend && npm run build",
"start": "NODE_ENV=production node dist/cli.js"
},
"bin": {
"mapinguari": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/FelixFranz/mapinguari.git"
},
"keywords": [
"game",
"online",
"multiplayer",
"cli",
"web"
],
"author": "Felix Franz",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/FelixFranz/mapinguari/issues"
},
"homepage": "https://gitlab.com/FelixFranz/mapinguari",
"engines": {
"node": ">=10.0"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"log-symbols": "^4.1.0",
"mongodb-memory-server": "^8.12.2",
"mongoose": "^5.12.3",
"socket.io": "^4.0.0",
"winston": "^3.3.3",
"yargs": "^16.2.0"
}
}