-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.91 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "dsa-in-js",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"prepare": "husky",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@base-ui-components/react": "1.0.0-alpha.8",
"@content-collections/mdx": "^0.2.2",
"@headless-tree/core": "^1.0.1",
"@headless-tree/react": "^1.0.1",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-collapsible": "^1.1.10",
"@radix-ui/react-context-menu": "^2.2.14",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-hover-card": "^1.1.13",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tooltip": "^1.2.7",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.11.0",
"lucide-react": "^0.510.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.6.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.1",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^4.1.6",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"keywords": [
"dsa",
"data-structures",
"algorithms",
"typescript",
"vitest"
],
"author": "kleva-j",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kleva-j/dsa-in-js.git"
},
"homepage": "https://michaelobasi.dev/DSA-in-JS",
"devDependencies": {
"@content-collections/core": "^0.9.0",
"@content-collections/markdown": "^0.1.4",
"@content-collections/vite": "^0.2.4",
"@eslint/js": "^9.22.0",
"@types/node": "^22.15.14",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"tw-animate-css": "^1.2.9",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.2",
"zod": "^3.25.36"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.js": "eslint --cache --fix"
},
"packageManager": "pnpm@10.11.0"
}