-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 897 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 897 Bytes
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
{
"name": "pedro-lucena-portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"check": "biome check .",
"check:unsafe": "biome check --write --unsafe .",
"check:write": "biome check --write .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"next": "16.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-typed": "^2.0.12"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "25.2.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
}
}