-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (44 loc) · 967 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (44 loc) · 967 Bytes
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
{
"name": "ante-up",
"version": "1.0.2",
"description": "Texas Hold-em hand generator",
"main": "client/poker.js",
"bin": "client/poker.js",
"scripts": {
"test": "jest --verbose --runInBand",
"test:watch": "npm run test -- --watch",
"start": "node server.js",
"start:watch": "nodemon server.js"
},
"engines": {
"node": "12.x"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [
"texas hold-em",
"ante-up",
"hold-em"
],
"author": "Alchemy Under the Gun",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.25",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"inquirer": "^7.0.3",
"mongoose": "^5.8.7",
"pokersolver": "^2.1.3",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0"
}
}