feat(web-client): implement a basic web client

This commit is contained in:
M. George Hansen 2022-05-08 23:45:18 -07:00
parent 991b82d750
commit 8b8f84ede1
Signed by: mgeorgehansen
SSH key fingerprint: SHA256:JlIGiQLPyQ2RHTH3a2oVlb20Xkh9Glr8DUF4YTXHJxM
13 changed files with 12506 additions and 9 deletions

View file

@ -1,11 +1,25 @@
{
"name": "web-client",
"version": "0.1.0",
"description": "A web client for csv-to-json.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "M. George Hansen",
"license": "UNLICENSED"
"name": "web-client",
"description": "A web client for csv-to-json.",
"version": "0.1.0",
"private": true,
"author": "M. George Hansen",
"license": "UNLICENSED",
"scripts": {
"dev": "vite"
},
"dependencies": {
"preact": "^10.7.2",
"react-query": "^3.39.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.1.7",
"@testing-library/preact": "^2.0.1",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"ts-node": "^10.6.0",
"typescript": "^4.5.5",
"vite": "^2.8.4",
"vite-tsconfig-paths": "^3.4.1"
}
}