codex-marketplace-ui/package.json

70 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2024-08-22 17:41:44 +02:00
{
2024-08-30 17:26:27 +02:00
"name": "@codex-storage/marketplace-ui",
2024-08-22 17:41:44 +02:00
"description": "Marketplace UI for Codex decentralized storage network.",
"repository": {
"type": "git",
"url": "https://github.com/codex-storage/codex-marketplace-ui"
},
2024-10-22 10:22:35 +02:00
"version": "0.0.7",
2024-08-22 17:41:44 +02:00
"type": "module",
"scripts": {
2024-10-11 15:41:49 +02:00
"dev": "vite --host 127.0.0.1 --port 5173",
2024-09-13 22:40:31 +02:00
"compile": "tsc --noEmit",
2024-08-22 17:41:44 +02:00
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
2024-10-11 17:58:13 +02:00
"preview": "vite preview --host 127.0.0.1 --port 5173",
2024-10-10 19:14:27 +02:00
"format": "prettier --write ./src",
2024-11-01 15:07:30 +01:00
"test": "npx playwright test",
"test:unit": "vitest run"
2024-08-22 17:41:44 +02:00
},
"keywords": [
"Codex",
"Javascript",
"Components",
"UI",
"React"
],
"dependencies": {
2024-11-10 09:20:38 +07:00
"@codex-storage/marketplace-ui-components": "0.0.42",
2024-11-01 20:23:47 +01:00
"@codex-storage/sdk-js": "^0.0.15",
2024-09-27 19:16:45 +02:00
"@sentry/browser": "^8.32.0",
2024-09-24 11:59:04 +02:00
"@sentry/react": "^8.31.0",
2024-08-22 17:41:44 +02:00
"@tanstack/react-query": "^5.51.15",
2024-09-24 11:59:04 +02:00
"@tanstack/react-router": "^1.58.7",
2024-10-11 11:17:48 +02:00
"dotted-map": "^2.2.3",
"echarts": "^5.5.1",
"emoji-picker-react": "^4.12.0",
2024-08-22 17:41:44 +02:00
"idb-keyval": "^6.2.1",
2024-09-24 11:59:04 +02:00
"lucide-react": "^0.445.0",
2024-08-22 17:41:44 +02:00
"react": "^18.3.1",
2024-08-29 18:45:52 +02:00
"react-dom": "^18.3.1"
2024-08-22 17:41:44 +02:00
},
"devDependencies": {
2024-10-10 19:14:27 +02:00
"@playwright/test": "^1.48.0",
2024-11-06 21:11:50 +01:00
"@svgr/plugin-svgo": "^8.1.0",
2024-09-24 11:59:04 +02:00
"@tanstack/router-plugin": "^1.58.4",
2024-10-10 19:14:27 +02:00
"@types/node": "^22.7.5",
2024-09-24 11:59:04 +02:00
"@types/react": "^18.3.8",
2024-08-22 17:41:44 +02:00
"@types/react-dom": "^18.3.0",
2024-09-24 11:59:04 +02:00
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
2024-08-22 17:41:44 +02:00
"@vitejs/plugin-react": "^4.3.1",
2024-10-11 15:27:15 +02:00
"dotenv": "^16.4.5",
2024-08-22 17:41:44 +02:00
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
2024-09-24 11:59:04 +02:00
"eslint-plugin-react-refresh": "^0.4.12",
"postcss": "^8.4.47",
"postcss-nesting": "^13.0.1",
2024-08-22 17:41:44 +02:00
"prettier": "^3.3.3",
2024-09-23 18:41:32 +02:00
"typescript": "5.5.4",
2024-11-01 15:07:30 +01:00
"vite": "^5.4.7",
2024-11-06 21:11:50 +01:00
"vite-plugin-svgr": "^4.3.0",
2024-11-01 15:07:30 +01:00
"vitest": "^2.1.4"
2024-08-22 17:41:44 +02:00
},
"engines": {
"node": ">=18"
},
"author": "Codex team",
"readme": "README.md",
"license": "MIT"
2024-10-11 15:41:49 +02:00
}