-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
51 lines (51 loc) · 1.59 KB
/
package.json
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
{
"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 <[email protected]> (https://leoku.dev)",
"scripts": {
"build": "next build",
"deps": "pnpm up --interactive --latest",
"dev": "next dev",
"dev:script": "tsc plugins/script --watch",
"lint": "run-p lint:ts lint:es lint:css",
"lint:css": "stylelint **/*.css",
"lint:es": "eslint **/*.{ts,tsx}",
"lint:ts": "tsc --noEmit --skipLibCheck",
"start": "next start"
},
"dependencies": {
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@splitbee/web": "^0.3.0",
"framer-motion": "^10.16.16",
"html-to-image": "^1.11.11",
"lucide-react": "^0.454.0",
"next": "^14.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-use-event-hook": "^0.9.6",
"tailwindcss-radix": "^3.0.5",
"valibot": "1.0.0-beta.3"
},
"devDependencies": {
"@babel/preset-react": "^7.25.9",
"@codennnn/tsconfig": "1.2.1",
"@types/greasemonkey": "^4.0.7",
"@types/node": "18.16.0",
"@types/react": "18.3.12",
"autoprefixer": "^10.4.20",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"prefer-code-style": "2.1.8",
"stylelint": "^16.10.0",
"tailwindcss": "^3.4.14",
"tslib": "^2.8.1",
"typescript": "^5.5.4"
}
}