-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
42
43
44
{
"name": "tic-tac-toe-extended",
"version": "0.5.0",
"description": "Supercharged version of tic-tac-toe for CodeGame.",
"license": "AGPL-3.0",
"author": "Maxwell Matthis",
"homepage": "https://github.com/code-game-project/tic-tac-toe-extended#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/code-game-project/tic-tac-toe-extended.git"
},
"engines": {
"node": ">=8.0"
},
"keywords": [
"game",
"tic-tac-toe"
],
"bugs": {
"url": "https://github.com/code-game-project/tic-tac-toe-extended/issues"
},
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "npx tsc",
"test": "mocha"
},
"dependencies": {
"@code-game-project/server": "^0.3.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"uuid": "^8.3.2",
"ws": "^8.6.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"mocha": "^10.2.0",
"typescript": "^4.7.3"
}
}