forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 696 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 696 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
{
"name": "husseinelhaddad-portfolio",
"version": "1.0.0",
"private": true,
"description": "Hussein Elhaddad — Portfolio (React + Vite)",
"homepage": "https://husseinelhaddad.github.io",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 4173",
"deploy:local": "bash deploy.sh ${GIT_REPO:-}",
"lint": "echo \"no linter configured\"",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.0.2",
"gh-pages": "^6.3.0",
"vite": "^5.0.0"
}
}