-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.58 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
{
"name": "portfolio",
"author": "monciego",
"description": "my portfolio",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"scripts": {
"dev:content": "velite --watch",
"build:content": "velite --clean",
"dev:next": "next dev",
"build:next": "next build",
"dev": "next dev",
"build": "run-s build:*",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky"
},
"dependencies": {
"@types/react-scroll": "^1.8.6",
"gray-matter": "^4.0.3",
"gsap": "^3.15.0",
"lucide-react": "^1.0.0",
"next": "^15.3.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^4.7.1",
"react-parallax": "^3.5.2",
"react-scroll": "^1.8.9",
"remark": "^14.0.2",
"remark-html": "^15.0.2",
"sharp": "^0.34.0",
"shiki": "^3.2.1",
"styled-components": "^6.1.17"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@svgr/webpack": "^8.1.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@types/styled-components": "^5.1.34",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "^15.3.9",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"typescript": "^5.8.3",
"velite": "^0.3.1"
}
}