Files
imphnen-frontend-service/package.json
T

146 lines
4.6 KiB
JSON
Raw Normal View History

2025-03-13 00:50:45 +07:00
{
"name": "@imphnen-frontend-service/source",
"version": "0.0.0",
"license": "MIT",
2025-03-13 02:03:13 +07:00
"scripts": {
2025-05-23 00:28:29 +07:00
"gacha:dev": "nx dev gacha",
2025-03-13 02:03:13 +07:00
"gacha:build": "nx build gacha",
2025-04-25 14:01:29 +07:00
"gacha:test": "nx test gacha",
2025-03-16 00:05:17 +07:00
"gacha:prod": "serve ./dist/apps/gacha",
2025-11-25 01:47:56 +07:00
"gacha:lint": "nx run gacha:lint",
2025-05-23 00:28:29 +07:00
"backoffice:dev": "nx dev backoffice",
2025-03-17 09:39:04 +07:00
"backoffice:build": "nx build backoffice",
2025-04-25 14:01:29 +07:00
"backoffice:test": "nx test backoffice",
"backoffice:prod": "serve ./dist/apps/backoffice",
2025-11-25 01:47:56 +07:00
"backoffice:lint": "nx run backoffice:lint",
2025-05-23 00:28:29 +07:00
"dimentorin:dev": "nx dev dimentorin",
2025-04-25 14:01:29 +07:00
"dimentorin:test": "nx test dimentorin",
2025-03-13 02:03:13 +07:00
"dimentorin:build": "nx build dimentorin",
2025-03-16 00:05:17 +07:00
"dimentorin:prod": "serve ./dist/apps/dimentorin",
2025-11-25 01:47:56 +07:00
"dimentorin:lint": "nx run dimentorin:lint",
2025-11-24 12:51:41 +07:00
"hackathon:dev": "nx dev hackathon",
"hackathon:build": "nx build hackathon",
"hackathon:test": "nx test hackathon",
"hackathon:prod": "serve ./dist/apps/hackathon",
2025-11-25 01:47:56 +07:00
"hackathon:lint": "nx run hackathon:lint",
2025-04-07 19:10:29 +07:00
"landing:dev": "nx serve landing",
"landing:build": "nx build landing",
2025-04-27 09:31:24 +07:00
"landing:prod": "cd ./dist/apps/landing && npx next start",
"landing:openapi": "npx openapi-typescript https://api.imphnen.dev/openapi.json -o ./apps/landing/src/openapi-types.ts",
2026-02-13 19:52:05 +07:00
"qrcampaign:dev": "nx dev qrcampaign",
"qrcampaign:build": "nx build qrcampaign",
"qrcampaign:test": "nx test qrcampaign",
"qrcampaign:prod": "serve ./dist/apps/qrcampaign",
2025-03-16 00:16:58 +07:00
"ui:test": "nx test ui",
2025-11-24 11:21:29 +07:00
"ui:build": "nx build ui"
2025-03-13 02:03:13 +07:00
},
2025-03-13 00:50:45 +07:00
"private": true,
"dependencies": {
2025-04-25 13:00:50 +07:00
"@ant-design/icons": "^6.0.0",
2025-04-03 12:21:10 +07:00
"@hookform/resolvers": "^5.0.1",
"@iconify/react": "^6.0.0",
"@marsidev/react-turnstile": "^1.1.0",
"@radix-ui/react-label": "^2.1.7",
2025-04-27 09:31:24 +07:00
"@radix-ui/react-slot": "^1.2.0",
"@redocly/ajv": "^8.11.2",
2025-04-25 13:00:50 +07:00
"@tanstack/react-query": "^5.74.4",
2025-11-25 01:47:56 +07:00
"@tanstack/react-store": "^0.8.0",
"@tanstack/react-table": "^8.21.2",
2025-03-13 02:03:13 +07:00
"axios": "^1.8.3",
2025-04-27 09:31:24 +07:00
"class-variance-authority": "^0.7.1",
2025-03-13 02:03:13 +07:00
"clsx": "^2.1.1",
2025-08-20 21:58:28 +07:00
"dayjs": "^1.11.13",
2025-04-27 09:31:24 +07:00
"framer-motion": "^12.9.2",
"graphql": "^16.11.0",
2025-12-09 14:15:23 +07:00
"html2canvas": "^1.4.1",
2025-04-03 12:21:10 +07:00
"js-cookie": "^3.0.5",
"next": "^16.0.10",
2025-04-27 09:31:24 +07:00
"next-themes": "^0.4.6",
2025-11-24 11:21:29 +07:00
"openapi-fetch": "^0.15.0",
"openapi-react-query": "^0.5.0",
2025-12-09 14:15:23 +07:00
"qrcode": "^1.5.4",
2025-12-09 16:28:32 +07:00
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-hook-form": "^7.56.4",
2025-04-27 09:31:24 +07:00
"react-icons": "^5.5.0",
2026-01-21 18:54:39 +07:00
"react-is": "^19.2.3",
2025-03-13 02:03:13 +07:00
"react-router-dom": "^7.3.0",
2025-08-20 21:58:28 +07:00
"recharts": "^3.1.2",
"sharp": "^0.34.1",
2025-04-03 19:40:19 +07:00
"sonner": "^2.0.3",
2025-04-03 12:21:10 +07:00
"tailwind-merge": "^3.0.2",
2025-06-18 18:40:19 +07:00
"vaul": "^1.1.2",
2025-05-23 00:28:29 +07:00
"zod": "^3.24.2",
"zustand": "^5.0.5"
2025-03-13 00:50:45 +07:00
},
"devDependencies": {
2025-03-13 02:03:13 +07:00
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
2025-04-26 20:32:58 +07:00
"@eslint/compat": "^1.1.1",
2025-04-25 13:00:50 +07:00
"@eslint/eslintrc": "^3.3.1",
2025-03-13 00:50:45 +07:00
"@eslint/js": "^9.8.0",
2025-11-25 01:47:56 +07:00
"@next/eslint-plugin-next": "^16.0.3",
2025-11-24 10:48:09 +07:00
"@nx/devkit": "22.1.1",
"@nx/eslint": "22.1.1",
"@nx/eslint-plugin": "22.1.1",
"@nx/js": "22.1.1",
"@nx/next": "22.1.1",
"@nx/playwright": "22.1.1",
"@nx/react": "22.1.1",
"@nx/vite": "22.1.1",
2026-02-13 19:52:05 +07:00
"@nx/vitest": "22.1.1",
2025-11-24 10:48:09 +07:00
"@nx/web": "22.1.1",
"@nx/workspace": "22.1.1",
2025-04-26 20:32:58 +07:00
"@playwright/test": "^1.36.0",
2025-03-13 00:50:45 +07:00
"@swc-node/register": "~1.9.1",
2025-04-25 13:00:50 +07:00
"@swc/cli": "0.6.0",
2025-03-13 00:50:45 +07:00
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
2025-03-13 02:03:13 +07:00
"@tailwindcss/postcss": "^4.0.13",
2025-03-13 00:50:45 +07:00
"@testing-library/dom": "10.4.0",
2025-03-13 02:03:13 +07:00
"@testing-library/jest-dom": "^6.6.3",
2026-02-13 19:52:05 +07:00
"@testing-library/react": "16.3.0",
2025-03-13 02:03:13 +07:00
"@testing-library/user-event": "^14.6.1",
2025-04-03 12:21:10 +07:00
"@types/js-cookie": "^3.0.6",
2025-11-24 11:21:29 +07:00
"@types/node": "^22.12.0",
2025-12-09 14:15:23 +07:00
"@types/qrcode": "^1.5.6",
2025-12-09 16:28:32 +07:00
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
2025-03-13 00:50:45 +07:00
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.0",
2025-03-13 02:03:13 +07:00
"ajv": "^6.12.6",
2025-03-13 00:50:45 +07:00
"eslint": "^9.8.0",
2025-04-26 20:32:58 +07:00
"eslint-config-next": "^15.2.4",
2025-04-25 13:00:50 +07:00
"eslint-config-prettier": "10.0.0",
2025-12-09 16:28:32 +07:00
"eslint-next-config": "^1.0.3",
2025-03-13 00:50:45 +07:00
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.1",
2025-04-26 20:32:58 +07:00
"eslint-plugin-playwright": "^1.6.2",
2025-03-13 00:50:45 +07:00
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "5.0.0",
2025-11-24 10:48:09 +07:00
"file-loader": "^6.2.0",
2025-04-07 19:10:29 +07:00
"h3": "^1.8.2",
2025-03-13 00:50:45 +07:00
"jiti": "2.4.2",
"jsdom": "~22.1.0",
2025-11-24 10:48:09 +07:00
"nx": "22.1.1",
"openapi-typescript": "^7.8.0",
2025-03-13 02:03:13 +07:00
"postcss": "^8.5.3",
2025-03-13 00:50:45 +07:00
"prettier": "^2.6.2",
2025-03-16 00:05:17 +07:00
"serve": "^14.2.4",
2025-03-13 02:03:13 +07:00
"tailwindcss": "^4.0.13",
2025-04-25 13:00:50 +07:00
"ts-node": "^10.9.2",
2025-03-13 00:50:45 +07:00
"tslib": "^2.3.0",
2025-04-27 09:31:24 +07:00
"tw-animate-css": "^1.2.8",
2025-11-24 10:48:09 +07:00
"typescript": "5.9.3",
"typescript-eslint": "8.40.0",
2025-03-13 02:03:13 +07:00
"verdaccio": "^6.0.5",
2025-11-24 10:48:09 +07:00
"vite": "7.1.3",
2025-03-13 02:03:13 +07:00
"vite-plugin-dts": "~4.5.0",
2026-02-13 19:52:05 +07:00
"vitest": "^4.0.0"
2025-03-13 02:03:13 +07:00
},
"nx": {
"includedScripts": []
2025-03-13 00:50:45 +07:00
}
}