-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "github-io",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add out/ && git commit -m \"Deploy Next.js to gh-pages\" && git subtree push --prefix out origin gh-pages"
},
"dependencies": {
"@react-three/drei": "^9.105.1",
"framer-motion": "^11.3.12",
"logrocket": "^1.0.14",
"logrocket-react": "^4.0.1",
"next": "^14.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-slick": "^0.30.2",
"react-visibility-sensor": "^5.1.1",
"sharp": "^0.31.0",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/next": "^9.0.0",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-slick": "^0.23.13",
"babel-plugin-transform-define": "^2.0.0",
"ts-migrate": "^0.1.35",
"typescript": "^5.5.4"
},
"volta": {
"node": "18.17.0"
}
}