-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.89 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
{
"name": "next-project-site",
"description": "A Next js template to start your new project's website",
"author": {
"name": "Lazaro Alonso",
"email": "lazarus.alon@gmail.com",
"url": "https://lazarusa.github.io"
},
"repository": {
"type": "git",
"url": "https://github.com/EarthyScience/next-project-site.git"
},
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.8.1",
"scripts": {
"prChecks": "pnpm lint && pnpm buildRepo",
"dev": "next dev",
"buildRepo": "pnpm rmBuild && pnpm build",
"rmBuild": "pnpm -r exec rm -rf out",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings 30"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.3.3",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@react-spring/three": "^10.0.1",
"@react-three/drei": "^10.1.2",
"@react-three/fiber": "^9.1.2",
"@tailwindcss/postcss": "^4.1.8",
"@types/mdx": "^2.0.13",
"@types/three": "^0.176.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.511.0",
"next": "15.3.3",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.6",
"postcss": "^8.5.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"remark-gfm": "^4.0.1",
"sugar-high": "^0.9.3",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^4.1.8",
"three": "^0.176.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^22",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"eslint": "^9.27.0",
"eslint-config-next": "15.3.3",
"tw-animate-css": "^1.3.2",
"typescript": "^5.8.3"
}
}