initial implementation

This commit is contained in:
2025-06-06 18:09:37 +08:00
commit 5e1d331717
26 changed files with 3841 additions and 0 deletions

34
package.json Normal file
View File

@ -0,0 +1,34 @@
{
"name": "demo-barcode-scanner",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.8",
"autoprefixer": "^10.4.21",
"idb": "^8.0.3",
"postcss": "^8.5.4",
"@ericblade/quagga2": "^1.8.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.2",
"tailwindcss": "^4.1.8"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"vite": "^6.3.5"
}
}