2025-07-21 12:23:41 +02:00
|
|
|
{
|
|
|
|
|
"name": "{{PROJECT_NAME}}",
|
|
|
|
|
"private": true,
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"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",
|
|
|
|
|
"@chakra-ui/react": "^3.20.0",
|
|
|
|
|
"@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",
|
|
|
|
|
"@eslint/js": "^9.25.1",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.13.0",
|
|
|
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
|
|
|
"@testing-library/react": "^16.3.0",
|
|
|
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
|
|
|
"@types/node": "^22.15.3",
|
|
|
|
|
"@types/react": "^18.3.19",
|
|
|
|
|
"@types/react-dom": "^18.3.5",
|
|
|
|
|
"@vitejs/plugin-react-swc": "^3.9.0",
|
|
|
|
|
"@vitest/coverage-v8": "^2.1.9",
|
|
|
|
|
"eslint": "^9.25.1",
|
|
|
|
|
"eslint-config-prettier": "^10.1.2",
|
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
|
|
|
"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",
|
2025-07-21 12:23:41 +02:00
|
|
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
|
|
|
"eslint-plugin-unicorn": "^55.0.0",
|
|
|
|
|
"globals": "^15.15.0",
|
2025-10-26 14:52:02 +01:00
|
|
|
"happy-dom": "^20.0.8",
|
2025-07-21 12:23:41 +02:00
|
|
|
"prettier": "^3.5.3",
|
|
|
|
|
"typescript": "~5.8.3",
|
|
|
|
|
"typescript-eslint": "^8.31.1",
|
2025-09-11 00:54:48 +02:00
|
|
|
"vite": "^5.4.20",
|
2025-07-21 12:23:41 +02:00
|
|
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
|
|
|
"vite-plugin-dts": "^4.3.0",
|
2025-12-19 13:25:40 +01:00
|
|
|
"vitest": "^2.1.9",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "8.50.0",
|
|
|
|
|
"@typescript-eslint/utils": "^8.50.0",
|
|
|
|
|
"@typescript-eslint/parser": "8.50.0"
|
2025-07-21 12:23:41 +02:00
|
|
|
},
|
|
|
|
|
"pnpm": {
|
|
|
|
|
"onlyBuiltDependencies": [
|
|
|
|
|
"@swc/core",
|
|
|
|
|
"esbuild"
|
2026-03-03 19:36:14 +01:00
|
|
|
],
|
|
|
|
|
"overrides": {
|
|
|
|
|
"minimatch@>=3.0.0 <3.1.4": ">=3.1.4 <4.0.0",
|
|
|
|
|
"minimatch@>=9.0.0 <9.0.7": ">=9.0.7 <10.0.0",
|
|
|
|
|
"minimatch@>=10.0.0 <10.2.3": ">=10.2.3"
|
|
|
|
|
}
|
2025-07-21 12:23:41 +02:00
|
|
|
}
|
|
|
|
|
}
|