{ "name": "csc-linktree", "version": "0.1.0", "private": true, "scripts": { "dev": "next dev", "build": "next build", "export": "next export", "type-check": "tsc", "format": "prettier --write './**/*'", "format:check": "prettier --check './**/*'", "lint": "eslint \"{pages,components}/**/*.{js,ts,tsx,jsx}\" --quiet --fix", "lint:check": "eslint \"{pages,components}/**/*.{js,ts,tsx,jsx}\" --quiet", "check": "npm run format:check && npm run lint:check", "check:fix": "npm run format && npm run lint", "clean-cache": "rm -rf ./.next" }, "dependencies": { "fast-deep-equal": "^3.1.3", "next": "10.0.7", "react": "17.0.1", "react-beautiful-dnd": "^13.0.0", "react-dom": "17.0.1", "styled-components": "^5.2.1" }, "devDependencies": { "@types/node": "^14.14.31", "@types/react": "^17.0.2", "@types/react-beautiful-dnd": "^13.0.0", "@types/react-dom": "^17.0.1", "@types/styled-components": "^5.1.8", "@typescript-eslint/eslint-plugin": "^4.16.1", "@typescript-eslint/parser": "^4.16.1", "autoprefixer": "^10.2.4", "eslint": "^7.21.0", "eslint-config-prettier": "^8.1.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-prettier": "^3.3.1", "eslint-plugin-react": "^7.22.0", "eslint-plugin-react-hooks": "^4.2.0", "husky": "^5.1.3", "postcss": "^8.2.7", "prettier": "^2.2.1", "stylelint": "^13.11.0", "stylelint-config-standard": "^20.0.0", "tailwindcss": "^2.0.3", "typescript": "^4.2.2" }, "husky": { "hooks": { "pre-push": "git diff HEAD --quiet && npm run check:fix" } } }