-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.03 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
{
"name": "danielgiljam.com",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": {
"name": "Daniel Giljam",
"url": "https://github.com/danielgiljam"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc",
"lint": "eslint --cache --max-warnings=0 .",
"fix": "eslint --cache --fix --max-warnings=0 .",
"prettier": "prettier --check .",
"format": "prettier --write .",
"tlp": "pnpm typecheck && pnpm lint && pnpm prettier",
"tff": "pnpm typecheck && pnpm fix && pnpm format",
"lp": "pnpm lint && pnpm prettier",
"ff": "pnpm fix && pnpm format"
},
"dependencies": {
"@google/model-viewer": "^4.0.0",
"@lit/react": "^1.0.7",
"@sentry/nextjs": "^9.10.1",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"adze": "^2.2.1",
"clsx": "^2.1.1",
"contentlayer": "^0.3.4",
"date-fns": "^4.1.0",
"next": "15.2.8",
"next-contentlayer": "^0.3.4",
"posthog-js": "^1.234.6",
"posthog-node": "^4.11.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rxjs": "^7.8.2",
"tailwind-merge": "^3.0.2",
"three": "^0.174.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@iconify-json/simple-icons": "^1.2.29",
"@iconify/tailwind4": "^1.0.6",
"@next/eslint-plugin-next": "15.2.3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.2.3",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unicorn": "^58.0.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4",
"typescript": "^5"
},
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af",
"pnpm": {
"onlyBuiltDependencies": [
"@vercel/speed-insights"
]
}
}