|
| 1 | +{ |
| 2 | + "name": "og", |
| 3 | + "version": "0.2.1", |
| 4 | + "private": true, |
| 5 | + "scripts": { |
| 6 | + "dev": "next dev", |
| 7 | + "build": "next build", |
| 8 | + "start": "next start", |
| 9 | + "prepare": "husky install", |
| 10 | + "lint": "next lint", |
| 11 | + "lint:fix": "eslint src --fix && yarn format", |
| 12 | + "format": "prettier --write src", |
| 13 | + "release": "standard-version", |
| 14 | + "push-release": "git push --follow-tags origin main", |
| 15 | + "postbuild": "next-sitemap" |
| 16 | + }, |
| 17 | + "dependencies": { |
| 18 | + "@tailwindcss/forms": "^0.3.4", |
| 19 | + "@vercel/og": "^0.0.27", |
| 20 | + "autoprefixer": "^10.4.0", |
| 21 | + "clsx": "^1.1.1", |
| 22 | + "next": "^13.1.2", |
| 23 | + "postcss": "^8.4.5", |
| 24 | + "query-string": "^7.0.1", |
| 25 | + "react": "^18.2.0", |
| 26 | + "react-dom": "^18.2.0", |
| 27 | + "react-hook-form": "^7.22.2", |
| 28 | + "react-icons": "^4.3.1" |
| 29 | + }, |
| 30 | + "devDependencies": { |
| 31 | + "@commitlint/cli": "^13.2.1", |
| 32 | + "@commitlint/config-conventional": "^13.2.0", |
| 33 | + "@types/node": "^18.11.18", |
| 34 | + "@types/react": "^18.0.26", |
| 35 | + "@types/tailwindcss": "^2.2.4", |
| 36 | + "@typescript-eslint/eslint-plugin": "^4.33.0", |
| 37 | + "@typescript-eslint/parser": "^4.33.0", |
| 38 | + "eslint": "^7.32.0", |
| 39 | + "eslint-config-next": "^13.1.2", |
| 40 | + "eslint-config-prettier": "^8.3.0", |
| 41 | + "eslint-plugin-simple-import-sort": "^7.0.0", |
| 42 | + "husky": "^7.0.4", |
| 43 | + "lint-staged": "^11.2.6", |
| 44 | + "next-sitemap": "^1.6.203", |
| 45 | + "prettier": "^2.5.1", |
| 46 | + "standard-version": "^9.3.2", |
| 47 | + "tailwindcss": "^2.2.19", |
| 48 | + "typescript": "^4.9.4" |
| 49 | + }, |
| 50 | + "lint-staged": { |
| 51 | + "src/**/*.{js,jsx,ts,tsx,}": [ |
| 52 | + "eslint --max-warnings=0", |
| 53 | + "prettier -w" |
| 54 | + ], |
| 55 | + "src/**/*.{json,css,scss,md}": [ |
| 56 | + "prettier -w" |
| 57 | + ] |
| 58 | + } |
| 59 | +} |
0 commit comments