removed snowpack dependency

This commit is contained in:
Geoff Doty 2020-09-19 22:12:48 -04:00
parent 0cb0d18367
commit c97e48c51d
3 changed files with 12 additions and 1812 deletions

View File

@ -17,8 +17,7 @@ Building small things with tiny libraries is my joy, and this app is no differen
- [Litedom JS](https://litedom.js.org/) - A Tiny View Library
- [Matrialize CSS](https://materializecss.com/) - A Not so Tiny CSS Framework
- [DexieDB] - A Robust IndexedDB Wrapper
- [Snowpack] - Fontend Build Tool, barily utilized
- [DexieDB](https://dexie.org/) - A Robust IndexedDB Wrapper
### Features
@ -27,14 +26,16 @@ Building small things with tiny libraries is my joy, and this app is no differen
## Quick Start
`npm start` Runs the app in the development mode using `live-server`. By default. Your browser should open to `http://localhost:8080`.
`npm start` Runs the app in the development mode. By default you can open at http://localhost:8080 in your browser to view.
> live-server reloads just rock for development.
Your page will reload if you make edits. You will also see any lint errors in the console.
## TODO
`npm run build` will build a static copy of your site in the `build/` folder, and thats it --your app is ready to be deployed!
> SEE: [snowpack.dev](https://www.snowpack.dev/) for more options
- Integrate `frontend-dependencies` or `Parcel` for vendor lib management
- Add ability to add entries/details to catalog/entries from modal
- Add ability to change dates back and forward on date line
- Add ability to load date based on date picker
## Support

1798
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +1,8 @@
{
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"start": "npx live-server --mount=/:./public/",
"test": "echo \"This template does not include a test runner by default.\" && exit 1"
},
"dependencies": {
"dexie": "^3.0.2"
},
"devDependencies": {
"snowpack": "^2.10.3"
}
"dependencies": {},
"devDependencies": {}
}