-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.54 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
{
"name": "portfolio",
"description": "A portfolio website template that helps you showcase your work, projects and skills as a software developer or freelancer.",
"homepage": "http://jamestsetsekas.com",
"version": "0.2.0",
"license": "MIT",
"private": true,
"author": {
"name": "James Tsetsekas",
"email": "jtsetsekas@gmail.com",
"url": "https://github.com/jamestsetsekas"
},
"engines": {
"node": "22.x"
},
"scripts": {
"prebuild": "node scripts/favicons.js",
"build": "next build",
"dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider next dev -p 3001",
"start": "cross-env NODE_OPTIONS=--openssl-legacy-provider next start",
"export": "next export",
"predeploy": "npm run build && npm run export && touch ./out/.nojekyll",
"deploy": "npm run custom-domain && node scripts/pages.js jamestsetsekas master",
"custom-domain": "node scripts/cname.js jamestsetsekas.com www.jamestsetsekas.com",
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.19",
"bootstrap": "^5.0.2",
"next": "^11.0.1",
"react": "^17.0.2",
"react-confetti": "^6.1.0",
"react-dom": "^17.0.2",
"react-hook-form": "^7.51.4"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"favicons": "^6.2.2",
"gh-pages": "^3.2.3",
"sass": "^1.37.5"
}
}