-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 911 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "10mp",
"version": "1.0.0",
"description": "10 Minute Pokemon - A collaborative Pokemon Fire Red kiosk experience where players take 10-minute turns. Features remote session management, cloud save states, and admin controls for kiosk deployment.",
"scripts": {
"frontend:dev": "cd frontend && npm start",
"frontend:build": "cd frontend && npm run build",
"admin:dev": "cd admin && npm start",
"admin:build": "cd admin && npm run build",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"docker:clean": "docker compose down -v && docker system prune -f",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install && cd ../admin && npm install"
},
"workspaces": [
"frontend",
"backend",
"admin"
]
}