51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
"name": "mantine-vite-template",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint src",
|
|
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
|
|
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
|
|
"jest": "jest",
|
|
"jest:watch": "jest --watch",
|
|
"test": "npm run typecheck && npm run prettier && npm run lint && npm run jest && npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.10.5",
|
|
"@mantine/core": "6.0.0-alpha.8",
|
|
"@mantine/hooks": "6.0.0-alpha.8",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/dom": "^8.20.0",
|
|
"@testing-library/jest-dom": "^5.16.5",
|
|
"@testing-library/react": "^13.4.0",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@types/jest": "^29.4.0",
|
|
"@types/react": "^18.0.27",
|
|
"@types/react-dom": "^18.0.10",
|
|
"@typescript-eslint/eslint-plugin": "^5.50.0",
|
|
"@typescript-eslint/parser": "^5.50.0",
|
|
"@vitejs/plugin-react": "^3.1.0",
|
|
"eslint": "^8.33.0",
|
|
"eslint-config-airbnb": "19.0.4",
|
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
"eslint-config-mantine": "2.0.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
"eslint-plugin-react": "^7.32.2",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"jest": "^29.4.1",
|
|
"jest-environment-jsdom": "^29.4.1",
|
|
"prettier": "^2.8.3",
|
|
"ts-jest": "^29.0.5",
|
|
"typescript": "^4.9.5",
|
|
"vite": "^4.1.1"
|
|
}
|
|
}
|