Converted sample project into an almost working Svelte / Meteor project. Needs to fix the login/logout code, the camera code, and add Chromebook history when the QR Code is scanned.

This commit is contained in:
2022-04-02 10:29:35 -07:00
parent 9e0e231152
commit 038c68f618
34 changed files with 3997 additions and 101 deletions

View File

@@ -11,9 +11,12 @@
"dependencies": {
"@babel/runtime": "^7.16.7",
"connect-route": "^0.1.5",
"html5-qrcode": "^2.2.0",
"jquery": "^3.6.0",
"meteor-node-stubs": "^1.0.0",
"mongodb": "^4.4.1",
"svelte": "^3.46.4",
"tinro": "^0.6.12",
"ws": "^8.4.2"
},
"meteor": {
@@ -21,9 +24,25 @@
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
"testModule": "tests/main.js",
"nodeModules": {
"recompile": {
"svelte": [
"legacy"
]
}
}
},
"svelte:compiler": {
"extensions": [
"svelte",
"html"
],
"hydratable": true,
"css": true
},
"devDependencies": {
"chai": "^4.2.0"
"chai": "^4.2.0",
"rollup-plugin-css-only": "^3.1.0"
}
}