Make Docker optional and simplify development setup

- Remove Dockerfile.dev and CI/CD workflow
- Remove Docker-specific npm scripts from package.json
- Update README to prioritize local Node.js development
- Make Docker containerization optional rather than required
- Update build scripts to treat Docker as optional
- Remove GitHub Actions and CI/CD references from documentation
- Add Format JSON button to JMESPath toolbar per copilot instructions
- Simplify development workflow for better accessibility
This commit is contained in:
2026-01-18 14:04:16 +01:00
parent 48d540bd48
commit 557f1b20c9
7 changed files with 19 additions and 231 deletions

View File

@@ -8,9 +8,7 @@
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"serve": "serve -s build -l 3000",
"docker:build": "docker build -t jmespath-playground .",
"docker:run": "docker run -p 3000:3000 jmespath-playground"
"serve": "serve -s build -l 3000"
},
"engines": {
"node": ">=24.0.0"