-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.05 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "react-three-next",
"version": "2.0.0",
"authors": [
"Hrishikesh Sawant <https://twitter.com/>"
],
"license": "MIT",
"private": true,
"engines": {
"node": ">=14"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.22.15",
"@ducanh2912/next-pwa": "^9.5.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@react-spring/web": "^9.7.3",
"@react-three/drei": "^9.82.1",
"@react-three/fiber": "^8.14.1",
"@studio-freight/lenis": "^1.0.22",
"babel-plugin-glsl": "^1.0.0",
"cobe": "^0.6.3",
"framer-motion": "^10.16.4",
"glsl-noise": "^0.0.0",
"glsl-random": "^0.0.5",
"immer": "^10.0.2",
"next": "^13.4.19",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-globe": "^5.0.2",
"react-globe.gl": "^2.24.4",
"socket.io-client": "^4.7.2",
"three": "^0.154.0",
"three-globe": "^2.28.0",
"three-stdlib": "^2.25.1",
"tunnel-rat": "^0.1.2",
"zustand": "^4.4.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.19",
"@types/estree": "^1.0.1",
"@types/node": "^20.5.9",
"@types/react": "^18.2.21",
"@types/three": "^0.155.1",
"autoprefixer": "^10.4.15",
"eslint": "^8.48.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-tailwind": "^0.2.1",
"eslint-plugin-tailwindcss": "^3.13.0",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"next-offline": "^5.0.5",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"url-loader": "^4.1.1"
},
"scripts": {
"lint": "next lint --fix --dir app",
"eslint": "next lint --fix --dir src",
"export": "EXPORT=true next build && EXPORT=true next export",
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"prettier": "npx prettier --list-different \"./src/**/*.{ts,tsx,md}\" \"./app/**/*.{ts,tsx,md}\"\""
}
}