2024-04-06 19:05:02 +02:00
|
|
|
{
|
2024-04-07 18:20:58 +02:00
|
|
|
"name": "convertx-frontend",
|
2026-01-13 20:38:35 +01:00
|
|
|
"version": "0.17.0",
|
2024-04-06 19:05:02 +02:00
|
|
|
"scripts": {
|
2024-05-24 22:58:25 +02:00
|
|
|
"dev": "bun run --watch src/index.tsx",
|
2024-05-26 12:47:15 +02:00
|
|
|
"hot": "bun run --hot src/index.tsx",
|
2025-10-05 14:19:13 +00:00
|
|
|
"format": "npm-run-all 'format:*'",
|
2025-06-03 19:19:28 +02:00
|
|
|
"format:eslint": "eslint --fix .",
|
|
|
|
|
"format:prettier": "prettier --write .",
|
2025-07-10 21:43:56 +05:30
|
|
|
"build:js": "tsc",
|
|
|
|
|
"build": "bun x @tailwindcss/cli -i ./src/main.css -o ./public/generated.css && bun run build:js",
|
2025-10-05 14:19:13 +00:00
|
|
|
"lint": "npm-run-all 'lint:*'",
|
2024-07-30 00:47:46 +02:00
|
|
|
"lint:tsc": "tsc --noEmit",
|
2024-08-05 21:25:35 +02:00
|
|
|
"lint:knip": "knip",
|
2025-06-03 19:19:28 +02:00
|
|
|
"lint:eslint": "eslint .",
|
|
|
|
|
"lint:prettier": "prettier --check ."
|
2024-04-06 19:05:02 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-10-02 17:29:07 +02:00
|
|
|
"@elysiajs/html": "^1.4.0",
|
|
|
|
|
"@elysiajs/jwt": "^1.4.0",
|
2026-01-26 20:48:26 +01:00
|
|
|
"@elysiajs/static": "^1.4.7",
|
2025-11-16 00:34:49 +01:00
|
|
|
"@kitajs/html": "^4.2.11",
|
2026-01-26 20:48:26 +01:00
|
|
|
"elysia": "^1.4.22",
|
2025-06-25 14:34:27 +02:00
|
|
|
"sanitize-filename": "^1.6.3",
|
2026-01-26 20:48:26 +01:00
|
|
|
"tar": "^7.5.6"
|
2024-04-06 19:05:02 +02:00
|
|
|
},
|
2024-05-19 00:07:56 +02:00
|
|
|
"module": "src/index.tsx",
|
2024-07-30 00:47:46 +02:00
|
|
|
"type": "module",
|
2024-04-06 19:05:02 +02:00
|
|
|
"bun-create": {
|
2024-05-19 00:07:56 +02:00
|
|
|
"start": "bun run src/index.tsx"
|
2024-05-18 00:16:08 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-02-07 12:09:41 +01:00
|
|
|
"@eslint/js": "^10.0.0",
|
2025-10-02 17:29:07 +02:00
|
|
|
"@kitajs/ts-html-plugin": "^4.1.3",
|
2026-01-26 20:48:26 +01:00
|
|
|
"@tailwindcss/cli": "^4.1.18",
|
|
|
|
|
"@tailwindcss/postcss": "^4.1.18",
|
2025-08-13 23:48:05 +02:00
|
|
|
"@types/bun": "latest",
|
2026-01-26 20:48:26 +01:00
|
|
|
"@types/node": "^24.10.9",
|
2026-02-07 12:09:41 +01:00
|
|
|
"eslint": "^10.0.0",
|
2026-01-26 20:48:26 +01:00
|
|
|
"eslint-plugin-better-tailwindcss": "^4.0.2",
|
|
|
|
|
"globals": "^17.1.0",
|
|
|
|
|
"knip": "^5.82.1",
|
2025-06-03 18:08:12 +02:00
|
|
|
"npm-run-all2": "^8.0.4",
|
2025-08-13 20:51:41 +02:00
|
|
|
"postcss": "^8.5.6",
|
2026-01-26 20:48:26 +01:00
|
|
|
"prettier": "^3.8.1",
|
2025-04-01 18:09:56 +02:00
|
|
|
"tailwind-scrollbar": "^4.0.2",
|
2026-01-26 20:48:26 +01:00
|
|
|
"tailwindcss": "^4.1.18",
|
2025-10-05 13:56:47 +00:00
|
|
|
"typescript": "^5.9.3",
|
2026-01-26 20:48:26 +01:00
|
|
|
"typescript-eslint": "^8.54.0"
|
2025-06-03 18:08:12 +02:00
|
|
|
},
|
|
|
|
|
"trustedDependencies": [
|
|
|
|
|
"@parcel/watcher",
|
2025-10-02 17:29:07 +02:00
|
|
|
"@tailwindcss/oxide",
|
|
|
|
|
"oxc-resolver"
|
2025-06-03 18:08:12 +02:00
|
|
|
]
|
2025-08-21 13:34:04 +00:00
|
|
|
}
|