-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.95 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.95 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
{
"name": "devlog",
"private": false,
"version": "0.0.0",
"description": "A React + TypeScript application for generating UX/Front-end case studies from design artifacts using AI",
"repository": {
"type": "git",
"url": "https://github.com/ericthayer/devlog.git"
},
"keywords": [
"react",
"typescript",
"case-study",
"gemini-ai",
"supabase",
"design-documentation"
],
"author": "Eric Thayer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericthayer/devlog/issues"
},
"homepage": "https://github.com/ericthayer/devlog#readme",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"semantic-release": "semantic-release"
},
"dependencies": {
"@google/genai": "^1.37.0",
"@supabase/supabase-js": "^2.91.0",
"jszip": "3.10.1",
"lucide-react": "^0.562.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.23",
"dotenv": "^17.2.3",
"jsdom": "^27.4.0",
"postcss": "^8.5.6",
"semantic-release": "^24.2.9",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^4.0.18"
}
}