-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.04 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 4.04 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "amrita-icpc-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "simple-git-hooks",
"generate-api": "orval"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@hello-pangea/dnd": "^18.0.1",
"@microsoft/fetch-event-source": "^2.0.1",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.8",
"@t3-oss/env-core": "^0.13.11",
"@t3-oss/env-nextjs": "^0.13.11",
"@tanstack/react-query": "^5.100.10",
"@tanstack/react-query-devtools": "^5.100.10",
"@tanstack/react-store": "^0.11.0",
"@tiptap/extension-details": "^3.23.2",
"@tiptap/extension-drag-handle": "^3.23.2",
"@tiptap/extension-link": "^3.23.2",
"@tiptap/extension-mathematics": "^3.23.2",
"@tiptap/extension-placeholder": "^3.23.2",
"@tiptap/react": "^3.23.2",
"@tiptap/starter-kit": "^3.23.2",
"@types/katex": "^0.16.8",
"axios": "^1.16.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"jose": "^6.2.3",
"katex": "^0.16.45",
"lucide-react": "^1.17.0",
"next": "16.2.6",
"next-auth": "4.24.14",
"next-safe": "^3.5.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.6.0",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-markdown": "^10.1.0",
"react-textarea-autosize": "^8.5.9",
"recharts": "3.8.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tiptap-markdown": "^0.9.0",
"xlsx": "^0.18.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@hookform/resolvers": "^5.2.2",
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"eslint": "^10.3.0",
"eslint-config-next": "^16.2.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"framer-motion": "^12.38.0",
"lint-staged": "^17.0.4",
"orval": "^8.10.0",
"prettier": "^3.8.3",
"react-hook-form": "^7.75.0",
"simple-git-hooks": "^2.13.1",
"tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged",
"pre-push": "bun run lint && bun run typecheck"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"bunx eslint --fix --no-warn-ignored",
"bunx prettier --write"
],
"*.{json,md,css,scss,html}": [
"bunx prettier --write"
]
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}