-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"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": {
"@babel/core": ">=7.0.0 <8.0.0",
"@react-three/drei": "^9.40.0",
"@react-three/fiber": "^8.9.1",
"@react-three/postprocessing": "^2.7.0",
"@types/three": "^0.148.0",
"@wixc3/react-board": "^2.1.3",
"glsl-random": "^0.0.5",
"leva": "^0.9.34",
"next": "^13.0.1",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-merge-refs": "^2.0.1",
"three": "^0.146.0",
"three-stdlib": "^2.17.3",
"typescript": "^4.9.4",
"webpack": ">=5.9.0 <6.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.0",
"@next/bundle-analyzer": "^12.3.1",
"add": "^2.0.6",
"autoprefixer": "^10.4.12",
"eslint": "^8.30.0",
"eslint-config-next": "^13.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-tailwind": "^0.2.1",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.2.1",
"url-loader": "^4.1.1"
}
}