added auth so subscribe request
This commit is contained in:
28
package.json
Normal file
28
package.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "countdown",
|
||||
"version": "1.0.0",
|
||||
"description": "Multi-player chess timer with carousel navigation",
|
||||
"main": "app.js",
|
||||
"scripts": {
|
||||
"start": "docker run -d -p 8080:80 --name game-timer-container game-timer:latest",
|
||||
"stop": "docker stop game-timer-container && docker rm game-timer-container",
|
||||
"build": "docker build -t 'game-timer:latest' .",
|
||||
"rebuild": "npm run stop || true && npm run build && npm run start",
|
||||
"logs": "docker logs game-timer-container",
|
||||
"status": "docker ps | grep game-timer-container",
|
||||
"dev": "cd /usr/share/nginx/html && python -m http.server 8000",
|
||||
"clean": "docker system prune -f"
|
||||
},
|
||||
"keywords": [
|
||||
"timer",
|
||||
"game",
|
||||
"chess",
|
||||
"pwa"
|
||||
],
|
||||
"author": "",
|
||||
"license": "SEE LICENSE IN LICENSE",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://gitea.virtonline.eu/2HoursProject/game-timer.git"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user