workoutbuddy-archive/package.json

57 lines
1.5 KiB
JSON

{
"name": "workoutbuddy",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"test": "jest --coverage --transformIgnorePatterns \"node_modules/(?!workoutbuddy)/\"",
"configure-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\""
},
"dependencies": {
"bootstrap": "^5.3.2",
"firebase": "^10.5.0",
"next": "13.5.6",
"prop-types": "^15.8.1",
"react": "18.2.0",
"react-aria": "^3.29.1",
"react-bootstrap": "^2.9.1",
"react-dom": "18.2.0",
"sharp": "^0.32.6"
},
"devDependencies": {
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3"
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint . --fix",
"prettier --write ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}