-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.21 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.21 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
{
"name": "green-wall",
"private": true,
"description": "GitHub contribution graph generator. Review all the contributions you've made to GitHub over the years.",
"license": "MIT",
"author": "LeoKu <leokudev@gmail.com> (https://leoku.dev)",
"scripts": {
"build": "next build",
"build:script": "tsc plugins/script",
"deps": "pnpm up --interactive --latest",
"dev": "next dev --turbopack -p 8000",
"dev:script": "tsc plugins/script --watch",
"lint": "run-p lint:ts lint:es lint:css",
"lint:css": "stylelint \"**/*.css\"",
"lint:es": "eslint \"**/*.{ts,tsx}\" --fix",
"lint:ts": "tsc --noEmit --skipLibCheck",
"start": "next start",
"prettier": "prettier --write ./src",
"check-i18n": "node scripts/check-i18n.mjs"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.30",
"@base-ui-components/react": "1.0.0-rc.0",
"@floating-ui/react": "^0.27.17",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-query-devtools": "^5.91.3",
"ai": "^6.0.86",
"better-auth": "^1.4.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.34.0",
"html-to-image": "^1.11.13",
"lucide-react": "^0.564.0",
"markdown-it": "^14.1.1",
"next": "16.1.6",
"next-intl": "^4.8.2",
"next-themes": "^0.4.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-use-event-hook": "^0.9.6",
"recharts": "^3.7.0",
"tailwind-merge": "^3.4.0",
"valibot": "1.2.0"
},
"devDependencies": {
"@babel/preset-react": "^7.28.5",
"@codennnn/tsconfig": "1.2.1",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/greasemonkey": "^4.0.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "22.15.18",
"@types/react": "19.2.14",
"babel-plugin-react-compiler": "^1.0.0",
"next-secure-headers": "^2.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"prefer-code-style": "^3.9.14",
"stylelint": "^17.3.0",
"stylelint-config-clean-order": "^8.0.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-tailwindcss": "^1.0.1",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@9.15.3"
}