|
1 | 1 | {
|
2 |
| - "name": "@example/basics", |
| 2 | + "name": "chatgpt-vercel", |
3 | 3 | "type": "module",
|
4 | 4 | "version": "0.0.1",
|
5 | 5 | "private": true,
|
6 | 6 | "license": "MIT",
|
7 | 7 | "scripts": {
|
| 8 | + "preinstall": "npx only-allow pnpm", |
| 9 | + "postinstall": "npx simple-git-hooks", |
8 | 10 | "dev": "cross-env NODE_ENV=development astro dev",
|
9 | 11 | "start": "cross-env NODE_ENV=development astro dev",
|
10 | 12 | "build": "astro build",
|
11 | 13 | "preview": "astro preview",
|
12 |
| - "astro": "astro" |
| 14 | + "astro": "astro", |
| 15 | + "lint": "eslint --fix --quiet --ext .js,.ts,.tsx,.astro ." |
13 | 16 | },
|
14 | 17 | "dependencies": {
|
15 | 18 | "@astrojs/react": "^2.1.0",
|
|
31 | 34 | "@types/node": "^18.15.3",
|
32 | 35 | "@types/react": "^18.0.28",
|
33 | 36 | "@types/react-dom": "^18.0.11",
|
| 37 | + "@typescript-eslint/eslint-plugin": "^5.55.0", |
| 38 | + "@typescript-eslint/parser": "^5.55.0", |
| 39 | + "astro-eslint-parser": "^0.12.0", |
34 | 40 | "cross-env": "^7.0.3",
|
| 41 | + "eslint": "^8.36.0", |
| 42 | + "eslint-config-airbnb-base": "^15.0.0", |
| 43 | + "eslint-config-prettier": "^8.7.0", |
| 44 | + "eslint-plugin-astro": "^0.25.0", |
| 45 | + "eslint-plugin-import": "^2.27.5", |
| 46 | + "eslint-plugin-prettier": "^4.2.1", |
| 47 | + "eslint-plugin-react": "^7.32.2", |
| 48 | + "eslint-plugin-react-hooks": "^4.6.0", |
| 49 | + "lint-staged": "^13.2.0", |
| 50 | + "prettier": "^2.8.4", |
| 51 | + "prettier-plugin-astro": "^0.8.0", |
35 | 52 | "punycode": "^2.3.0",
|
| 53 | + "simple-git-hooks": "^2.8.1", |
36 | 54 | "tailwindcss": "^3.2.7",
|
37 | 55 | "typescript": "^4.9.5"
|
| 56 | + }, |
| 57 | + "lint-staged": { |
| 58 | + "**/*.{ts,tsx,js,astro}": [ |
| 59 | + "eslint --fix --quiet", |
| 60 | + "prettier --write" |
| 61 | + ] |
| 62 | + }, |
| 63 | + "simple-git-hooks": { |
| 64 | + "pre-commit": "pnpm exec lint-staged --concurrent false" |
38 | 65 | }
|
39 | 66 | }
|
0 commit comments