Skip to content

Commit

Permalink
Merge pull request #30 from maslick/bump-dependencies
Browse files Browse the repository at this point in the history
bump dependencies, improve docs
  • Loading branch information
maslick authored Jan 2, 2022
2 parents 1fff023 + 08fc6e9 commit 0e72919
Show file tree
Hide file tree
Showing 3 changed files with 2,051 additions and 2,243 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ OUTPUT_DIR=public/wasm OUTPUT_FILE=barcode make clean
# Fetch dependencies
yarn install --frozen-lockfile

# Development mode
# Development mode (can be accessed from any device on local wifi)
npm run start
open https://locahost:8080

# Production mode
# Production mode (build and serve static web app, localhost only)
npm run build
cd build && python3 -m http.server 8001 --bind 0.0.0.0
open http://localhost:8001
npm run build-and-serve
open http://localhost:8082
```


Expand Down
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "koder-react",
"version": "1.2.3",
"version": "1.2.4",
"homepage": "./",
"private": true,
"devDependencies": {
"@pathcheck/dcc-sdk": "^0.0.23",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.1.1",
"http-server": "^0.12.3",
"prop-types": "^15.7.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"http-server": "^0.13.0",
"prop-types": "^15.8.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"upnqr": "1.1.0"
"upnqr": "1.1.0",
"@pathcheck/dcc-sdk": "^0.0.23"
},
"scripts": {
"start": "HTTPS=true PORT=8080 HOST=0.0.0.0 react-scripts start",
Expand All @@ -22,7 +22,8 @@
"eject": "react-scripts eject",
"build-sw": "node ./src/sw-build.js",
"clean-cra-sw": "rm -f build/precache-manifest.*.js && rm -f build/service-worker.js",
"vanilla-js-live": "npx http-server ./docs/ -p 8081 -c-1"
"vanilla-js-live": "npx http-server ./docs/ -p 8081 -c-1",
"build-and-serve": "npx http-server ./build/ -p 8082 -c-1"
},
"eslintConfig": {
"extends": "react-app"
Expand Down
Loading

0 comments on commit 0e72919

Please sign in to comment.