-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.79 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.79 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "bonnie-wee-plot",
"version": "0.1.0",
"description": "A Next.js application for garden planning and AI-powered gardening advice. Built entirely using Claude Sonnet AI via VS Code agent mode. Free for personal and educational use.",
"license": "SEE LICENSE FILE - Creator retains commercial rights, others non-commercial use only",
"author": "Created by Ismael Martinez with the asistance of Claude Sonnet (Anthropic AI)",
"repository": {
"type": "git",
"url": "https://github.com/IsmaelMartinez/bonnie-wee-plot.git"
},
"keywords": [
"allotment",
"scottish",
"gardening",
"ai",
"nextjs",
"typescript",
"ai-generated",
"claude-sonnet"
],
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "eslint . --max-warnings 0",
"type-check": "tsc --noEmit",
"test": "playwright test",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:headed": "playwright test --headed",
"test:chrome": "playwright test --project=chromium",
"test:firefox": "playwright test --project=firefox",
"test:webkit": "playwright test --project=webkit",
"test:all": "npm run test:unit && npm run test",
"prepare": "husky"
},
"dependencies": {
"@clerk/nextjs": "^7.0.1",
"@sentry/nextjs": "^10.48.0",
"@serwist/next": "^9.5.7",
"@supabase/supabase-js": "^2.98.0",
"@upstash/redis": "^1.37.0",
"driver.js": "^1.4.0",
"html5-qrcode": "^2.3.8",
"lucide-react": "^0.575.0",
"next": "^16.2.3",
"qrcode.react": "^4.2.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-grid-layout": "^2.2.3",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"web-vitals": "^5.1.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"@next/bundle-analyzer": "^16.2.2",
"@playwright/test": "^1.59.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.6.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitest/coverage-v8": "^4.1.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.29.0",
"eslint-config-next": "^16.2.2",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"serwist": "^9.5.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"vitest": "^4.0.16"
},
"overrides": {
"rollup": "^4.59.0",
"minimatch": "^9.0.8"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings 0"
]
}
}