-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "poker-pocket-ts-backend",
"version": "0.1.0",
"description": "Poker Pocket multi game typescript websocket backend",
"main": "index.js",
"scripts": {
"start:dev": "nodemon",
"start": "npx ts-node src/index.ts",
"test": "jest",
"build": "tsc",
"secret": "ts-node src/bcrypt-secret-generator.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/norkator/poker-pocket-ts-backend.git"
},
"author": "Martin Kankaanranta (norkator)",
"license": "MIT",
"bugs": {
"url": "https://github.com/norkator/poker-pocket-ts-backend/issues"
},
"homepage": "https://github.com/norkator/poker-pocket-ts-backend#readme",
"dependencies": {
"bcrypt": "5.1.1",
"dotenv": "16.4.7",
"jsonwebtoken": "9.0.2",
"pg": "8.13.1",
"pg-hstore": "2.3.4",
"pino": "9.6.0",
"pino-pretty": "13.0.0",
"poker-odds": "1.0.1",
"pokersolver": "2.1.4",
"reflect-metadata": "0.2.2",
"seedrandom": "3.0.5",
"sequelize": "6.37.5",
"sequelize-typescript": "2.1.6",
"ws": "8.18.0"
},
"devDependencies": {
"@types/bcrypt": "5.0.2",
"@types/jest": "29.5.14",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "22.10.3",
"@types/seedrandom": "3.0.8",
"@types/validator": "13.12.2",
"@types/ws": "8.5.13",
"jest": "29.7.0",
"nodemon": "3.1.9",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}