{ "name": "minerva", "version": "0.1.0", "private": true, "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint", "prepare": "husky install", "postinstall": "husky install", "test": "jest --watch --config ./jest.config.mjs", "test:coverage": "jest --watchAll --coverage --config ./jest.config.mjs", "test:coveragee": "jest --coverage", "coverage": "open ./coverage/lcov-report/index.html" }, "lint-staged": { "**/*.{js,jsx,ts,tsx}": [ "eslint --fix", "prettier --config ./.prettierrc.js --write" ], "**/*.{css,scss,md,html,json}": [ "prettier --config ./.prettierrc.js --write" ] }, "dependencies": { "@types/node": "20.6.2", "@types/react": "18.2.21", "@types/react-dom": "18.2.7", "autoprefixer": "10.4.15", "eslint-config-next": "13.4.19", "next": "13.4.19", "postcss": "8.4.29", "react": "18.2.0", "react-dom": "18.2.0", "tailwindcss": "3.3.3" }, "devDependencies": { "@commitlint/cli": "^17.7.1", "@commitlint/config-conventional": "^17.7.0", "@testing-library/jest-dom": "^6.1.3", "@testing-library/react": "^14.0.0", "@typescript-eslint/eslint-plugin": "^6.7.0", "@typescript-eslint/parser": "^6.7.0", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.49.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^9.0.0", "eslint-config-standard-with-typescript": "^39.0.0", "eslint-plugin-import": "^2.28.1", "eslint-plugin-jsx-a11y": "^6.7.1", "eslint-plugin-n": "^16.1.0", "eslint-plugin-promise": "^6.1.1", "eslint-plugin-react": "^7.33.2", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-testing-library": "^6.0.1", "husky": "^8.0.3", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "lint-staged": "^14.0.1", "prettier": "^3.0.3", "typescript": "^5.2.2" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }