chore: update deps and readme

This commit is contained in:
Ayo 2022-11-28 08:16:38 +01:00
parent b5f3767f10
commit b2060fba41
3 changed files with 15223 additions and 3 deletions

View file

@ -1,9 +1,11 @@
# Play Minesweeper Online
[![Netlify Status](https://api.netlify.com/api/v1/badges/172478bd-afc5-4e47-95ba-d9ab814248fb/deploy-status)](https://app.netlify.com/sites/mnswpr/deploys)
This is a single page web application featuring the classic game, Minesweeper.
This is the classic game **Minesweeper** built as a single page application with vanilla JS (i.e., no framework dependency).
Built on HTML, JS, and CSS.
Stack:
- HTML, JS, and CSS
- Webpack for bundling
## Development
To start development, you need node v16 (the dev server doesn't work on v18 *yet*). Once you know you have this, you can do the following:
@ -14,4 +16,4 @@ To start development, you need node v16 (the dev server doesn't work on v18 *yet
After running the commands to start development, open in a browser: `http://localhost:4200`
## Live Demo
The current live site is here: (https://mnswpr.com)
The live site is here: [Minesweeper](https://mnswpr.com)

15217
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -6,6 +6,7 @@
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently --kill-others \"npm run watch:dev\" \"npm start\"",
"start:dev": "concurrently --kill-others \"npm run watch:dev\" \"npm start\"",
"start": "http-server ./dist/ -a localhost -p 4200",
"watch:dev": "node ./node_modules/webpack/bin/webpack.js --watch --mode development .",