-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
40
41
{
"name": "senate",
"version": "0.0.0",
"description": "Senate is a word-based multiplayer game to improve your debate and eloquence skill",
"type": "module",
"main": "main.js",
"scripts": {
"check": "npx tsc --project .",
"start": "node main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georgolden/senate.git"
},
"author": "Georg Oldenburger",
"license": "MIT",
"bugs": {
"url": "https://github.com/georgolden/senate/issues"
},
"homepage": "https://github.com/georgolden/senate#readme",
"engines": {
"node": "18"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^18.7.8",
"@types/ws": "^8.5.3",
"eslint": "^8.22.0",
"eslint-config-metarhia": "^8.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"metatests": "^0.8.2",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"workspaces": [
"./src/domain/*"
]
}