-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "obg-server",
"version": "0.0.1",
"description": "OpenBoardGame's backend server.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn src/app.ts",
"build": "tsc",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenBoardGame/obg-server.git"
},
"keywords": [
"board-game",
"game-of-life",
"hacktoberfest",
"bgo"
],
"author": "OpenBoardGame",
"contributors": [
"Salies",
"Windsdon"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/OpenBoardGame/obg-server/issues"
},
"homepage": "https://github.com/OpenBoardGame/obg-server#readme",
"dependencies": {
"socket.io": "^2.3.0"
},
"devDependencies": {
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.3"
}
}