-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.61 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
42
43
44
45
{
"name": "portfolio_v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently --kill-others \"npm run tailwind:dev\" \"next dev\"",
"tailwind:dev": "pnpm run tailwind:build --watch",
"build": "pnpm run tailwind:build && next build && pnpm run addNoJekyll",
"tailwind:build": "npx tailwindcss -i ./src/app/globals.css -o ./public/output.css",
"start": "next start",
"lint": "next lint",
"addNoJekyll": "echo Prevent not routing folders starting with _ > dist/.nojekyll",
"predeploy": "(if exist \"dist\" rmdir /s /q \"dist\";) && git worktree add dist gh-pages -f",
"deploy": "pnpm run build && cd dist && git add --all && git commit -m \"Update gh-pages\" && git push origin gh-pages && cd .."
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/node": "20.4.6",
"@types/react": "18.2.18",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"eslint": "8.46.0",
"eslint-config-next": "13.4.12",
"gsap": "^3.12.2",
"next": "13.4.12",
"nvm": "^0.0.4",
"postcss": "8.4.27",
"react": "18.2.0",
"react-dom": "18.2.0",
"swiper": "^10.2.0",
"three": "^0.155.0",
"typescript": "5.1.6"
},
"packageManager": "[email protected]",
"devDependencies": {
"concurrently": "^8.2.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss-preset-env": "^9.1.1",
"tailwindcss": "^3.3.3"
}
}