forked from JhaSourav07/commitpulse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.39 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.39 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
{
"name": "github-streak-badge",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,md,css,json,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,md,css,json,yml,yaml}\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"bench:svg": "tsx scripts/benchmark-svg.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{md,css,json,yml,yaml}": "prettier --write"
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/postcss": "^4.2.2",
"@vercel/analytics": "^1.6.1",
"dompurify": "^3.4.7",
"framer-motion": "^12.38.0",
"gsap": "^3.15.0",
"html-to-image": "^1.11.13",
"jspdf": "^4.2.1",
"lightningcss": "^1.32.0",
"lucide-react": "^1.17.0",
"mongodb": "^7.2.0",
"mongoose": "^9.6.2",
"next": "^16.2.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-force-graph-2d": "^1.29.1",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.6.0",
"sonner": "^2.0.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@emnapi/core": "^1.10.0",
"@emnapi/runtime": "^1.10.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/dompurify": "^3.0.5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"autoprefixer": "^10.5.0",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^15.2.11",
"node-mocks-http": "^1.17.2",
"postcss": "^8.5.9",
"prettier": "^3.8.3",
"react-is": "^19.2.6",
"tailwindcss": "^4.2.2",
"tsx": "^4.22.2",
"typescript": "^5",
"vitest": "^4.1.4"
},
"optionalDependencies": {
"@resvg/resvg-js-linux-x64-gnu": "^2.6.2",
"@rolldown/binding-linux-x64-gnu": "^1.0.3",
"@tailwindcss/oxide-linux-x64-gnu": "^4.3.0",
"@unrs/resolver-binding-linux-x64-gnu": "^1.12.2",
"lightningcss-linux-x64-gnu": "^1.32.0"
}
}