librarian-web/package.json

55 lines
1.5 KiB
JSON

{
"name": "librarian-web",
"version": "0.0.0",
"main": "index.js",
"repository": "https://git.csclub.uwaterloo.ca/o32patel/librarian-web.git",
"author": "Ohm Patel <ohm.patel@uwaterloo.ca>",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "next dev --turbo -p 3001",
"build": "next build",
"start": "next start",
"lint": "prettier -w ./__tests__ ./src && next lint --fix && eslint ./__tests__ --fix",
"lint:nofix": "(prettier -l ./__tests__ ./src && next lint --quiet 1>NUL: && eslint ./__tests__) || echo Linting failed view details above && exit 1",
"test": "jest",
"test:ci": "jest --ci --coverage"
},
"dependencies": {
"flowbite": "^2.3.0",
"flowbite-react": "^0.7.2",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "6.1.5",
"@testing-library/react": "14.1.2",
"@types/jest": "29.5.11",
"@types/node": "^20.11.19",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "^8.4.35",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.2.3"
},
"pre-commit": [
"lint:nofix",
"test:ci"
]
}