-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "days-on-github",
"version": "2.3.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.16.0"
},
"scripts": {
"dev": "run-p build:graph:watch dev:next",
"build": "run-s build:graph build:next",
"preview": "pnpm start",
"lint": "eslint . --fix",
"type-check": "tsc --noEmit",
"test": "run-p build:graph:watch vitest",
"test:once": "run-s build:graph vitest:once",
"vitest": "vitest",
"vitest:once": "vitest run",
"dev:next": "next dev",
"build:next": "next build",
"dev:graph": "vite",
"build:graph": "vite build",
"build:graph:watch": "vite build --watch"
},
"dependencies": {
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/mdx": "^14.2.13",
"@nextui-org/react": "^2.4.8",
"@radix-ui/react-toast": "^1.2.1",
"@sparticuz/chromium-min": "126",
"@types/mdx": "^2.0.13",
"@vercel/analytics": "^1.3.1",
"@vercel/blob": "^0.23.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.5.6",
"lucide-react": "^0.428.0",
"next": "^14.2.13",
"ofetch": "^1.4.0",
"puppeteer-core": "22.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"winston": "^3.14.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@eslint-react/eslint-plugin": "^1.14.2",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^20.16.5",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"jsdom": "^24.1.3",
"npm-run-all2": "^6.2.3",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.12",
"vite": "^5.4.7",
"vitest": "^2.1.1"
}
}