-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "r3f-gravity-ball",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"prod": "serve out",
"test:lint": "next lint",
"test:types": "tsc",
"deps:update": "npm i $(npm outdated | cut -d' ' -f 1 | sed '1d' | xargs -I '$' echo '$@latest' | xargs echo) --save-exact"
},
"dependencies": {
"@next/font": "13.1.6",
"@react-three/cannon": "6.5.2",
"@react-three/drei": "9.56.25",
"@react-three/fiber": "8.11.2",
"@use-gesture/react": "10.2.24",
"cannon-es": "0.20.0",
"lodash-es": "4.17.21",
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-joystick-component": "6.0.0",
"recoil": "0.7.7",
"three": "0.149.0"
},
"devDependencies": {
"@types/lodash-es": "4.17.6",
"@types/node": "18.11.19",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/three": "0.149.0",
"autoprefixer": "10.4.13",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"postcss": "8.4.21",
"serve": "14.2.0",
"tailwindcss": "3.2.4",
"typescript": "4.9.5"
}
}