-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.36 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
42
43
44
45
46
47
48
49
50
{
"name": "@asmodee/werewolf-server",
"version": "3.0.0",
"description": "Server of Asmodee Werewolves of Miller's Hollow",
"type": "module",
"main": "dist/app.js",
"bin": {
"werewolf-server": "dist/cli.js"
},
"scripts": {
"start": "node dist/cli.js",
"build": "rimraf dist && tsc -p src",
"debug": "tsc -p src --incremental --sourceMap",
"test": "npm run lint && npm run jest",
"lint": "eslint .",
"jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takashiro/asmodee-werewolf-server.git"
},
"author": "Kazuichi Takashiro",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/takashiro/asmodee-werewolf-server/issues"
},
"homepage": "https://github.com/takashiro/asmodee-werewolf-server#readme",
"dependencies": {
"@asmodee/werewolf-core": "^1.0.1",
"express": "^4.21.1"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^20.14.9",
"@types/supertest": "^6.0.2",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.8.1"
},
"files": [
"dist"
]
}