28 lines
900 B
JSON
28 lines
900 B
JSON
{
|
|
"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"
|
|
}
|
|
} |