-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 974 Bytes
/
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
{
"name": "portfolio-nextjs",
"version": "0.1.0",
"private": true,
"description": "Personal portfolio built using Next.js",
"author": {
"name": "Yousef ALHindawi",
"email": "[email protected]",
"url": "https://yousefalhindawi.com"
},
"repository": {
"type": "git",
"url": "https://github.com/YousefALH/portfolio-nextjs"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-brands-svg-icons": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"eslint-config-next": "13.4.5",
"next": "^13.5.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ga4": "^2.1.0",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.10"
}
}