-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.94 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.94 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
94
95
96
97
98
{
"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.4.1",
"@sentry/nextjs": "^10.53.1",
"@serwist/next": "^9.5.11",
"@supabase/supabase-js": "^2.106.2",
"@syncedstore/core": "^0.6.0",
"@upstash/redis": "^1.38.0",
"driver.js": "^1.4.0",
"html5-qrcode": "^2.3.8",
"lucide-react": "^1.16.0",
"next": "^16.2.6",
"qrcode.react": "^4.2.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-grid-layout": "^2.2.3",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"web-vitals": "^5.2.0",
"y-indexeddb": "^9.0.12",
"yjs": "^13.6.30",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@next/bundle-analyzer": "^16.2.6",
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.7",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.6",
"fake-indexeddb": "^6.2.5",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^16.4.0",
"postcss": "^8.5.10",
"serwist": "^9.5.7",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
},
"overrides": {
"rollup": "^4.59.0",
"minimatch": "^9.0.8",
"postcss": "^8.5.10"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings 0"
]
}
}