-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.46 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "chess",
"version": "1.0.0",
"description": "Chess.js",
"repository": {
"type": "git",
"url": "git+https://github.com/modscleo4/chess.git"
},
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tspc",
"clean": "tsc -b --clean",
"dev": "nodemon --inspect src/server.ts",
"start": "node .",
"test": "ts-node-esm src/test/index.ts",
"generateKeys": "node ./bin/generateKeys.js"
},
"keywords": [
"chess",
"js",
"ws",
"midori"
],
"author": {
"name": "Dhiego Cassiano Fogaça Barbosa",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/modscleo4/chess/issues"
},
"homepage": "modscleo4.dev.br/chess",
"dependencies": {
"@prisma/client": "^4.12.0",
"dotenv": "^16.0.3",
"midori": "github:modscleo4/midori",
"midori-swaggerui": "github:modscleo4/midori-swaggerui",
"prisma": "^4.12.0",
"stockfish-nnue.wasm": "^1.0.0-1946a675.smolnet",
"stockfish.wasm": "^0.10.0",
"ws": "^8.12.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@types/ws": "^8.5.4",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"ts-patch": "^3.1.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.3",
"typescript-transform-paths": "^3.4.6"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": "^5.0.9"
}
}