summaryrefslogtreecommitdiff
path: root/package.json
blob: 695f3fe6199f7cd56396a2ec3a9a324dc23716ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  "type": "module",
  "private": "true",
  "scripts": {
    "dev": "astro dev",
    "start": "astro dev",
    "build": "astro build",
    "preview": "astro preview",
    "astro": "astro",
    "lint": "eslint .",
    "format": "prettier ./**/* --check",
    "format--write": "prettier ./**/* --write",
    "prepare": "husky install"
  },
  "dependencies": {
    "@paypal/paypal-js": "^6.0.1",
    "astro": "^2.9.7",
    "dotenv": "^16.3.1",
    "typescript": "^5.1.6",
    "vercel": "^31.2.2"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^6.2.1",
    "@typescript-eslint/parser": "^6.2.1",
    "eslint": "^8.46.0",
    "eslint-plugin-astro": "^0.28.0",
    "husky": "^8.0.3",
    "lint-staged": "^13.2.3",
    "prettier": "^3.0.0",
    "prettier-plugin-astro": "^0.11.0"
  },
  "lint-staged": {
    "**/*.{ts,cts,mts,astro,json,md,js,cjs,mjs,html}": [
      "eslint",
      "prettier"
    ]
  }
}