feat(frontend): add API client, layout, and routing
- Create Axios-based API client with sources, jobs, and dashboard endpoints - Add responsive Layout component with navigation sidebar - Set up React Router with Dashboard, Backups, and Settings routes - Configure TanStack Query provider with default options - Use lucide-react for navigation icons
This commit is contained in:
+89
@@ -0,0 +1,89 @@
|
||||
{
|
||||
"name": "jsdom",
|
||||
"version": "23.2.0",
|
||||
"description": "A JavaScript implementation of many web standards",
|
||||
"keywords": [
|
||||
"dom",
|
||||
"html",
|
||||
"whatwg",
|
||||
"w3c"
|
||||
],
|
||||
"maintainers": [
|
||||
"Elijah Insua <tmpvar@gmail.com> (http://tmpvar.com)",
|
||||
"Domenic Denicola <d@domenic.me> (https://domenic.me/)",
|
||||
"Sebastian Mayr <sebmaster16@gmail.com> (https://blog.smayr.name/)",
|
||||
"Joris van der Wel <joris@jorisvanderwel.com>",
|
||||
"Timothy Gu <timothygu99@gmail.com> (https://timothygu.me/)",
|
||||
"Magne Andersson <code@zirro.se> (https://zirro.se/)",
|
||||
"Pierre-Marie Dartus <dartus.pierremarie@gmail.com>"
|
||||
],
|
||||
"license": "MIT",
|
||||
"repository": "jsdom/jsdom",
|
||||
"dependencies": {
|
||||
"@asamuzakjp/dom-selector": "^2.0.1",
|
||||
"cssstyle": "^4.0.1",
|
||||
"data-urls": "^5.0.0",
|
||||
"decimal.js": "^10.4.3",
|
||||
"form-data": "^4.0.0",
|
||||
"html-encoding-sniffer": "^4.0.0",
|
||||
"http-proxy-agent": "^7.0.0",
|
||||
"https-proxy-agent": "^7.0.2",
|
||||
"is-potential-custom-element-name": "^1.0.1",
|
||||
"parse5": "^7.1.2",
|
||||
"rrweb-cssom": "^0.6.0",
|
||||
"saxes": "^6.0.0",
|
||||
"symbol-tree": "^3.2.4",
|
||||
"tough-cookie": "^4.1.3",
|
||||
"w3c-xmlserializer": "^5.0.0",
|
||||
"webidl-conversions": "^7.0.0",
|
||||
"whatwg-encoding": "^3.1.1",
|
||||
"whatwg-mimetype": "^4.0.0",
|
||||
"whatwg-url": "^14.0.0",
|
||||
"ws": "^8.16.0",
|
||||
"xml-name-validator": "^5.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"canvas": "^2.11.2"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"canvas": {
|
||||
"optional": true
|
||||
}
|
||||
},
|
||||
"devDependencies": {
|
||||
"@domenic/eslint-config": "^3.0.0",
|
||||
"benchmark": "^2.1.4",
|
||||
"eslint": "^8.56.0",
|
||||
"eslint-plugin-html": "^7.1.0",
|
||||
"eslint-plugin-jsdom-internal": "file:./scripts/eslint-plugin",
|
||||
"js-yaml": "^4.1.0",
|
||||
"minimatch": "^9.0.3",
|
||||
"mocha": "^10.2.0",
|
||||
"mocha-sugar-free": "^1.4.0",
|
||||
"pngjs": "^7.0.0",
|
||||
"server-destroy": "^1.0.1",
|
||||
"webidl2js": "^17.1.0",
|
||||
"yargs": "^17.7.2"
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": "npm run convert-idl && npm run generate-js-globals",
|
||||
"pretest": "npm run prepare && npm run init-wpt",
|
||||
"test-wpt": "mocha test/web-platform-tests/run-wpts.js",
|
||||
"test-tuwpt": "mocha test/web-platform-tests/run-tuwpts.js",
|
||||
"test-mocha": "mocha",
|
||||
"test-api": "mocha test/api",
|
||||
"test": "mocha test/index.js",
|
||||
"lint": "eslint . --cache --ext .js,.html",
|
||||
"init-wpt": "git submodule update --init --recursive",
|
||||
"reset-wpt": "rm -rf ./test/web-platform-tests/tests && npm run init-wpt",
|
||||
"update-wpt": "git submodule update --init --recursive --remote && cd test/web-platform-tests/tests && python wpt.py manifest --path ../wpt-manifest.json",
|
||||
"update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS.txt",
|
||||
"benchmark": "node ./benchmark/runner",
|
||||
"convert-idl": "node ./scripts/webidl/convert.js",
|
||||
"generate-js-globals": "node ./scripts/generate-js-globals.js"
|
||||
},
|
||||
"main": "./lib/api.js",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user