2025-07-21 12:23:41 +02:00
|
|
|
{
|
|
|
|
|
"name": "{{PROJECT_NAME}}",
|
|
|
|
|
"private": true,
|
|
|
|
|
"version": "0.0.0",
|
2025-10-26 07:54:57 +01:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=22"
|
|
|
|
|
},
|
2025-07-21 12:23:41 +02:00
|
|
|
"type": "module",
|
|
|
|
|
"main": "./dist/main.js",
|
|
|
|
|
"module": "./dist/main.js",
|
|
|
|
|
"types": "./dist/main.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"import": "./dist/main.js",
|
|
|
|
|
"types": "./dist/main.d.ts"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite --port 5173 --strictPort",
|
|
|
|
|
"build": "vite build",
|
|
|
|
|
"build:types": "tsc --p tsconfig.lib.json",
|
|
|
|
|
"build:lib": "vite build",
|
|
|
|
|
"lint": "eslint --quiet && tsc --p tsconfig.app.json",
|
|
|
|
|
"lint:fix": "eslint --fix && tsc --p tsconfig.app.json",
|
|
|
|
|
"format": "pnpm prettier --write .",
|
|
|
|
|
"preview": "vite preview",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"coverage": "vitest run --coverage"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@chakra-ui/anatomy": "^2.3.4",
|
2026-03-08 10:48:25 +01:00
|
|
|
"@chakra-ui/react": "^3.34.0",
|
2025-07-21 12:23:41 +02:00
|
|
|
"@emotion/react": "^11.14.0",
|
2025-09-13 09:13:33 +02:00
|
|
|
"next-themes": "^0.4.6",
|
|
|
|
|
"react": "^19.1.1",
|
|
|
|
|
"react-dom": "^19.1.1"
|
2025-07-21 12:23:41 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@eslint/compat": "^1.2.9",
|
2026-03-08 18:33:04 +01:00
|
|
|
"@eslint/js": "^9.39.4",
|
2025-07-21 12:23:41 +02:00
|
|
|
"@stylistic/eslint-plugin": "^2.13.0",
|
|
|
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
|
|
|
"@testing-library/react": "^16.3.0",
|
2026-03-09 10:36:34 -04:00
|
|
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
2026-03-08 19:16:39 +01:00
|
|
|
"@types/node": "^25.3.3",
|
2026-03-09 10:36:51 -04:00
|
|
|
"@types/react": "^19.2.14",
|
2026-03-08 18:21:39 +01:00
|
|
|
"@types/react-dom": "^19.0.1",
|
2026-03-08 10:48:25 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "8.56.1",
|
|
|
|
|
"@typescript-eslint/parser": "8.56.1",
|
|
|
|
|
"@typescript-eslint/utils": "^8.56.1",
|
2025-09-13 17:23:49 +05:30
|
|
|
"@vitejs/plugin-react-swc": "^4.0.1",
|
|
|
|
|
"@vitest/coverage-v8": "^3.2.4",
|
2025-07-21 12:23:41 +02:00
|
|
|
"eslint": "^9.25.1",
|
|
|
|
|
"eslint-config-prettier": "^10.1.2",
|
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
2026-03-09 10:36:16 -04:00
|
|
|
"eslint-plugin-perfectionist": "^5.6.0",
|
2025-07-21 12:23:41 +02:00
|
|
|
"eslint-plugin-prettier": "^5.2.6",
|
|
|
|
|
"eslint-plugin-react": "^7.37.5",
|
2025-09-13 09:13:33 +02:00
|
|
|
"eslint-plugin-react-hooks": "^5.2.0",
|
2026-03-08 10:48:25 +01:00
|
|
|
"eslint-plugin-react-refresh": "^0.5.2",
|
2025-07-21 12:23:41 +02:00
|
|
|
"eslint-plugin-unicorn": "^55.0.0",
|
2026-03-08 18:26:13 +01:00
|
|
|
"globals": "^17.4.0",
|
2026-03-08 10:48:25 +01:00
|
|
|
"happy-dom": "^20.8.3",
|
2025-07-21 12:23:41 +02:00
|
|
|
"prettier": "^3.5.3",
|
2026-03-08 10:48:25 +01:00
|
|
|
"typescript": "~5.9.3",
|
|
|
|
|
"typescript-eslint": "^8.56.1",
|
2025-10-26 07:54:57 +01:00
|
|
|
"vite": "^7.1.11",
|
2026-03-08 18:24:34 +01:00
|
|
|
"vite-plugin-css-injected-by-js": "^4.0.1",
|
2025-07-21 12:23:41 +02:00
|
|
|
"vite-plugin-dts": "^4.3.0",
|
2026-02-23 15:26:05 +01:00
|
|
|
"vitest": "^3.2.4"
|
2025-07-21 12:23:41 +02:00
|
|
|
},
|
|
|
|
|
"pnpm": {
|
|
|
|
|
"onlyBuiltDependencies": [
|
|
|
|
|
"@swc/core",
|
|
|
|
|
"esbuild"
|
2026-02-23 15:26:05 +01:00
|
|
|
],
|
|
|
|
|
"overrides": {
|
2026-03-04 13:08:20 +01:00
|
|
|
"minimatch@<10.2.3": ">=10.2.3",
|
2026-02-26 22:07:27 +01:00
|
|
|
"ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0",
|
2026-03-14 14:28:56 +01:00
|
|
|
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
|
|
|
|
|
"flatted@<3.4.0": ">=3.4.0"
|
2026-02-23 15:26:05 +01:00
|
|
|
}
|
2025-07-21 12:23:41 +02:00
|
|
|
}
|
|
|
|
|
}
|