forked from hashirshoaeb/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.31 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
{
"name": "portfolio",
"description": "A portfolio website template that helps you showcase your work, projects and skills as a software developer or freelancer.",
"homepage": "https://kateyzcodes.github.io/portfolio",
"version": "0.2.0",
"license": "MIT",
"private": true,
"author": {
"name": "Hashir Shoaib",
"email": "[email protected]",
"url": "https://github.com/hashirshoaeb"
},
"scripts": {
"prebuild": "node scripts/favicons.js",
"build": "next build",
"dev": "next dev",
"start": "next start",
"export": "next export",
"predeploy": "npm run build && npm run export && touch ./out/.nojekyll",
"deploy": "npm run custom-domain && node scripts/pages.js hashirshoaeb master",
"custom-domain": "node scripts/cname.js hashirshoaeb.com www.hashirshoaeb.com",
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"bootstrap": "^5.2.1",
"next": "12.3.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"eslint": "8.23.1",
"eslint-config-next": "12.3.0",
"favicons": "^6.2.2",
"gh-pages": "^4.0.0",
"sass": "^1.54.9"
}
}