-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.12 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
{
"name": "opensource-github",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --max-warnings=0",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,yaml,yml}\"",
"format": "prettier --write \"**/*.{ts,tsx,js,json,yaml,yml}\"",
"test": "vitest run",
"test:e2e": "playwright test"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-avatar": "^1.2.0",
"@radix-ui/react-dropdown-menu": "^2.1.18",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.3.1",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.15",
"@tanstack/react-query": "^5.101.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.2.0",
"isomorphic-dompurify": "^2.36.0",
"libsodium-wrappers": "^0.7.15",
"lucide-react": "^0.468.0",
"marked": "^15.0.0",
"next": "^15.0.0",
"next-themes": "^0.4.0",
"nextra-theme-docs": "^3.3.1",
"prismjs": "^1.29.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.80.0",
"swr": "^2.3.3",
"tailwind-merge": "^2.5.4",
"zod": "^3.23.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.45.0",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/dompurify": "^3.0.5",
"@types/libsodium-wrappers": "^0.7.14",
"@types/node": "^20.0.0",
"@types/prismjs": "^1.26.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^9.0.0",
"eslint-config-next": "^15.0.0",
"jsdom": "^25.0.0",
"lefthook": "^1.7.0",
"postcss": "^8.4.0",
"prettier": "^3.3.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
}
}