-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.6 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.6 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
{
"name": "personal-website",
"version": "2.0.0",
"private": true,
"description": "Personal Website Application - Next.js Version",
"author": {
"name": "Jacob Schulzetenberg",
"email": "[email protected]",
"url": "http://www.schulzetenberg.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/schulzetenberg/personal-website"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"cf-typegen": "wrangler types --env-interface CloudflareEnv ./cloudflare-env.d.ts"
},
"dependencies": {
"@opennextjs/cloudflare": "^1.6.1",
"clsx": "^2.1.1",
"framer-motion": "^12.35.1",
"husky": "^9.1.7",
"next": "15.5.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^8",
"eslint-config-next": "15.5.2",
"lint-staged": "^15.3.0",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"typescript": "^5",
"wrangler": "^4.26.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
}
}