forked from ZecHub/zechub-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.76 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "zechub-wiki",
"version": "0.3.0",
"private": true,
"scripts": {
"dev": "node --max-old-space-size=4096 node_modules/next/dist/bin/next dev",
"build": "node --max-old-space-size=4096 node_modules/next/dist/bin/next build",
"start": "node --max-old-space-size=4096 node_modules/next/dist/bin/next start",
"lint": "next lint",
"test:coverage": "jest --coverage",
"test": "jest --watch",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.3.4",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next-auth/mongodb-adapter": "^1.1.3",
"@next/mdx": "^13.4.19",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@react-icons/all-files": "^4.1.0",
"@visx/event": "^3.3.0",
"@visx/gradient": "^3.3.0",
"@visx/grid": "^3.5.0",
"@visx/group": "^3.3.0",
"@visx/marker": "^3.5.0",
"@visx/mock-data": "^3.3.0",
"@visx/scale": "^3.5.0",
"@visx/shape": "^3.5.0",
"@visx/tooltip": "^3.3.0",
"autoprefixer": "10.4.15",
"class-variance-authority": "^0.7.0",
"eslint": "8.48.0",
"eslint-config-next": "13.4.19",
"express-session": "^1.18.0",
"flowbite": "^1.8.1",
"flowbite-react": "^0.6.4",
"framer-motion": "^11.0.3",
"gitlog": "^4.0.8",
"html2canvas": "^1.4.1",
"mongodb": "6.3",
"next": "^13.5.6",
"next-auth": "^4.24.5",
"next-mdx-remote": "^4.4.1",
"octokit": "^3.1.0",
"pg": "^8.12.0",
"postcss": "8.4.29",
"qrcode": "^1.5.3",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.0",
"react-icons": "^4.12.0",
"react-toastify": "^10.0.4",
"rehype-img-size": "^1.0.1",
"rehype-prism-plus": "^1.6.3",
"rehype-slug": "^6.0.0",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"swr": "^2.2.4",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"web-push": "^3.6.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@octokit/types": "^11.1.0",
"@playwright/test": "^1.45.1",
"@testing-library/dom": "^10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/marked": "^5.0.1",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/react-icons": "^3.0.0",
"@types/serviceworker": "^0.0.82",
"@types/web-push": "^3.6.3",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
}
}