-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.45 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.45 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
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
73
74
75
76
77
78
79
80
81
82
{
"name": "playgroundrl",
"description": "An interactive reinforcement learning playground built with Next.js and React Three Fiber.",
"version": "2.0.0",
"authors": [
"Renaud ROHLINGER <https://twitter.com/onirenaud>"
],
"license": "MIT",
"private": true,
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "next lint --fix --dir app",
"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}\"\""
},
"dependencies": {
"@14islands/r3f-scroll-rig": "^8.13.1",
"@ducanh2912/next-pwa": "^10.0.0",
"@nodetoy/react-nodetoy": "^0.1.24",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.0.2",
"@react-spring/three": "^9.7.3",
"@react-spring/web": "^9.7.3",
"@react-three/drei": "^9.92.7",
"@react-three/fiber": "^8.15.12",
"@react-three/postprocessing": "^2.16.2",
"@studio-freight/lenis": "^1.0.39",
"@upstash/redis": "^1.28.3",
"@vercel/edge-config": "^1.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"copy-webpack-plugin": "^12.0.2",
"geist": "^1.5.1",
"glsl-random": "^0.0.5",
"lamina": "1.1.23",
"leva": "^0.9.35",
"lucide-react": "^0.344.0",
"next": "^14.0.4",
"next-themes": "^0.3.0",
"node-polyfill-webpack-plugin": "^3.0.0",
"onnxruntime-web": "^1.17.1",
"r3f-perf": "^7.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.14.1",
"sonner": "^1.4.3",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"three": "^0.170.0",
"three-stdlib": "^2.28.9",
"tunnel-rat": "^0.1.2",
"zustand": "^4.5.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.0.4",
"@types/node": "^20.11.24",
"@types/react": "^18.2.62",
"@types/three": "0.170.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"null-loader": "^4.0.1",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"url-loader": "^4.1.1"
}
}