-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.29 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.29 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
{
"name": "github-profile-readme-builder",
"version": "0.1.0",
"private": true,
"description": "A powerful and easy-to-use tool to create stunning GitHub profile READMEs with ease.",
"author": "Ranit Manik <ranitmanik.dev@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/ranitmanik/github-profile-readme-builder.git"
},
"keywords": [
"github",
"readme",
"profile",
"builder",
"generator",
"nextjs",
"typescript",
"tailwind"
],
"license": "MIT",
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write --ignore-path .gitignore .",
"test": "vitest",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,css,md,scss}": [
"prettier --write"
]
},
"dependencies": {
"@next/third-parties": "^16.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"github-markdown-css": "^5.8.1",
"lucide-react": "^0.474.0",
"next": "^16.2.1",
"react": "^19.0.0",
"react-confetti": "6.4.0",
"react-dom": "^19.0.0",
"react-github-btn": "1.4.0",
"react-markdown": "^9.0.3",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.0.0",
"typescript": "^5",
"vitest": "^4.1.2"
}
}