-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "react-three-next",
"version": "2.0.0",
"authors": [
"Joseph Dale Bañares"
],
"license": "MIT",
"private": true,
"engines": {
"node": ">=14"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.17.0",
"@react-spring/web": "^9.5.2",
"@react-three/cannon": "^6.3.0",
"@react-three/drei": "^9.17.3",
"@react-three/fiber": "^8.2.1",
"@react-three/postprocessing": "^2.5.0",
"babel-plugin-glsl": "^1.0.0",
"glsl-random": "^0.0.5",
"next": "^12.1.6",
"next-compose-plugins": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"three": "^0.142.0",
"three-stdlib": "^2.12.1",
"zustand": "^4.0.0-rc.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.10",
"@types/node": "^18.0.6",
"@types/react": "^18.0.15",
"@types/three": "^0.142.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.8.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-tailwind": "^0.2.1",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"next-offline": "^5.0.5",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.1.4",
"typescript": "^4.7.4",
"url-loader": "^4.1.1"
},
"scripts": {
"lint": "yarn prettier && yarn eslint",
"eslint": "next lint --fix --dir src",
"prettier": "prettier --list-different \"./src/**/*.{ts,tsx,md}\"",
"dev": "next dev",
"build": "next build",
"export": "EXPORT=true next build && EXPORT=true next export",
"analyze": "ANALYZE=true next build",
"start": "next start"
}
}