forked from IFS49F/poker-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.13 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
{
"name": "poker-server",
"version": "1.0.0",
"description": "Server for Scrum Poker",
"repository": "IFS49F/poker-server",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"test": "mocha --recursive ./tests",
"build-submodule": "echo 'Building submodule web...' && cd web && yarn install && NODE_OPTIONS=--openssl-legacy-provider yarn run build",
"build": "yarn run build-submodule && echo 'Building main project...' && cp -r web/build public",
"release": "yarn run build && docker build --platform linux/amd64 ./ -t genghisinfo/poker4fun:latest && docker push genghisinfo/poker4fun:latest",
"deploy": "kubectl apply -f deployment/deployment.yaml -n sales-and-billing",
"clean": "rm -rf public && cd web && yarn run clean"
},
"engines": {
"node": ">=20"
},
"keywords": [
"poker"
],
"author": "Zoro Jiang <[email protected]>",
"license": "MIT",
"dependencies": {
"express": "^4.15.3",
"ioredis": "^3.1.1",
"socket.io": "^2.0.3"
},
"devDependencies": {
"chai": "^4.1.1",
"mocha": "^10.6.0",
"nodemon": "^1.11.0",
"proxyquire": "^1.8.0"
}
}