forked from pmndrs/react-three-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "react-three-next",
"version": "2.0.0",
"authors": [
"Renaud ROHLINGER <https://twitter.com/onirenaud>"
],
"license": "MIT",
"private": true,
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "yarn prettier && yarn eslint",
"eslint": "next lint --fix --dir src",
"prettier": "prettier -l \"./src/**/*.{js,jsx,md}\"",
"dev": "next dev",
"build": "next build",
"export": "EXPORT=true next build && EXPORT=true next export",
"analyze": "ANALYZE=true next build",
"start": "next start"
},
"dependencies": {
"@react-three/drei": "^9.56.5",
"@react-three/fiber": "^8.10.1",
"glsl-random": "^0.0.5",
"next": "^13.1.6",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.149.0",
"three-stdlib": "^2.21.6"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.1.6",
"autoprefixer": "^10.4.12",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-tailwindcss": "^3.9.0",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.2.4",
"url-loader": "^4.1.1"
}
}