65 lines
2.0 KiB
JSON
65 lines
2.0 KiB
JSON
{
|
|
"name": "mantine-vite-template",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "npm run eslint && npm run stylelint",
|
|
"eslint": "eslint . --cache",
|
|
"stylelint": "stylelint '**/*.css' --cache",
|
|
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
|
|
"vitest": "vitest run",
|
|
"vitest:watch": "vitest",
|
|
"test": "npm run typecheck && npm run prettier && npm run lint && npm run vitest && npm run build",
|
|
"storybook": "storybook dev -p 6006",
|
|
"storybook:build": "storybook build"
|
|
},
|
|
"dependencies": {
|
|
"@mantine/core": "8.2.5",
|
|
"@mantine/hooks": "8.2.5",
|
|
"react": "^19.1.1",
|
|
"react-dom": "^19.1.1",
|
|
"react-router-dom": "^7.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.34.0",
|
|
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
|
|
"@storybook/react": "^8.6.12",
|
|
"@storybook/react-vite": "^8.6.12",
|
|
"@testing-library/dom": "^10.4.1",
|
|
"@testing-library/jest-dom": "^6.8.0",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/node": "^24.3.0",
|
|
"@types/react": "^19.1.12",
|
|
"@types/react-dom": "^19.1.9",
|
|
"@vitejs/plugin-react": "^5.0.2",
|
|
"eslint": "^9.34.0",
|
|
"eslint-config-mantine": "^4.0.3",
|
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jsdom": "^26.1.0",
|
|
"postcss": "^8.5.6",
|
|
"postcss-preset-mantine": "1.18.0",
|
|
"postcss-simple-vars": "^7.0.1",
|
|
"prettier": "^3.6.2",
|
|
"prop-types": "^15.8.1",
|
|
"storybook": "^8.6.12",
|
|
"storybook-dark-mode": "^4.0.2",
|
|
"stylelint": "^16.23.1",
|
|
"stylelint-config-standard-scss": "^15.0.1",
|
|
"typescript": "^5.9.2",
|
|
"typescript-eslint": "^8.41.0",
|
|
"vite": "^7.1.3",
|
|
"vite-tsconfig-paths": "^5.1.4",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"packageManager": "yarn@4.9.3"
|
|
}
|