-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.3 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",
"version": "1.0.0",
"description": "Multi-player poker app",
"main": "index.js",
"scripts": {
"test:unit": "./node_modules/@hapi/lab/bin/lab test/unit -v",
"test:integration": "./node_modules/@hapi/lab/bin/lab test/integration -v",
"start:dev": "npm run tailwind && npm run nodemon",
"tailwind": "tailwindcss build -i ./public/css/input.css -o ./public/css/styles.css",
"nodemon": "./node_modules/nodemon/bin/nodemon.js index.js",
"start": "node index.js"
},
"author": "Jeff Mason",
"license": "ISC",
"dependencies": {
"@hapi/basic": "^6.0.0",
"@hapi/cookie": "^11.0.2",
"@hapi/hapi": "^20.3.0",
"@hapi/inert": "^6.0.3",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^6.0.1",
"bcrypt": "^5.0.1",
"handlebars": "^4.7.7",
"pokersolver": "^2.1.4",
"socket.io": "^4.4.1"
},
"devDependencies": {
"@hapi/code": "^8.0.3",
"@hapi/lab": "^24.2.1",
"nodemon": "^2.0.7",
"readline-sync": "^1.4.10",
"tailwindcss": "^3.0.22"
},
"nodemonConfig": {
"ignore": [
"spec/*",
".gitignore",
"node_modules/**/node_modules",
".git"
],
"watch": [
"src/",
"public/",
"templates/",
"server.js"
],
"ext": "js,json,html"
},
"engines": {
"node": "14.x"
}
}