-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.49 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
{
"name": "yield",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"dev:webpack": "next dev --webpack",
"build": "next build",
"start": "next start",
"lint": "biome check . --write",
"lint:check": "biome check .",
"format": "biome format . --write",
"test": "vitest",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-toggle-group": "^1.1.11",
"@sentry/nextjs": "^10.42.0",
"clsx": "^2.1.1",
"framer-motion": "^12.35.1",
"katex": "^0.16.38",
"lucide-react": "^0.577.0",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "^5.6.0",
"react-katex": "^3.1.0",
"resend": "^6.9.3",
"tailwind-merge": "^3.5.0",
"zustand": "^5.0.11"
},
"lint-staged": {
"*.{ts,tsx}": [
"biome check --write",
"node scripts/attribution-guard.cjs"
],
"/*.json": [
"biome check --write"
]
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@tailwindcss/postcss": "^4",
"@types/katex": "^0.16.7",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-katex": "^3.0.4",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.16"
}
}