-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.69 KB
/
package.json
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
70
{
"name": "mario-web",
"private": true,
"version": "1.0.0",
"description": "Mario Beltrán - Frontend Software Engineer",
"repository": {
"type": "git",
"url": "https://github.com/Belco90/mario-web"
},
"homepage": "https://mario.dev",
"main": "index.js",
"keywords": [
"website",
"personal",
"portfolio",
"developer",
"engineer",
"react",
"nextjs",
"frontend"
],
"author": "Mario Beltrán",
"license": "ISC",
"engines": {
"pnpm": "^9.14.0"
},
"packageManager": "[email protected]",
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"type-check": "tsc --noEmit",
"lint": "next lint",
"lint:fix": "pnpm lint -- --fix",
"format": "prettier --write --ignore-unknown src \"*.{json,js,md}\"",
"prepare": "panda codegen & husky"
},
"dependencies": {
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"date-fns": "^4.1.0",
"next": "15.0.3",
"next-themes": "^0.4.3",
"react": "19.0.0-rc-66855b96-20241106",
"react-dom": "19.0.0-rc-66855b96-20241106",
"react-icons": "^5.3.0",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@pandacss/dev": "^0.48.0",
"@types/node": "^20.17.6",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"typescript": "^5.6.3"
},
"pnpm": {
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}
}