-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.07 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
{
"name": "web",
"version": "0.1.0",
"private": true,
"engines": {
"bun": ">=1.3.13"
},
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "bun run typecheck",
"test:unit": "bun test"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "16.2.10",
"@types/mdx": "^2.0.14",
"ethers": "^6.17.0",
"lenis": "^1.3.25",
"lucide-react": "^1.24.0",
"next": "16.2.10",
"next-themes": "^0.4.6",
"posthog-js": "^1.399.3",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/jsdom": "^28.0.3",
"@types/node": "^26",
"@types/react": "^19",
"@types/react-dom": "^19",
"bun-types": "1.3.14",
"eslint": "^9",
"eslint-config-next": "16.2.10",
"jsdom": "^29.1.1",
"tailwindcss": "^4",
"typescript": "5.9.3"
}
}