-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.06 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "r3f-next-starter",
"version": "1.0.0",
"authors": [
"Ryosuke Hana <https://twitter.com/whoisryosuke>",
"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,ts,tsx,md}\" --write",
"dev": "next dev -p 8000",
"build": "next build",
"export": "EXPORT=true next build && EXPORT=true next export",
"analyze": "ANALYZE=true next build",
"start": "next start",
"mock-backend": "npx json-server --watch db.json --port 8000"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.6.0",
"@react-spring/three": "^9.4.5",
"@react-spring/web": "^9.5.5",
"@react-three/a11y": "^3.0.0",
"@react-three/drei": "^9.11.3",
"@react-three/fiber": "^8.0.22",
"babel-plugin-glsl": "^1.0.0",
"csstype": "^3.1.1",
"glsl-random": "^0.0.5",
"leva": "^0.9.27",
"next": "^12.1.6",
"next-auth": "^4.16.4",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-icons": "^4.6.0",
"react-is": "^18.1.0",
"react-spring": "^9.5.5",
"socket.io-client": "^4.5.4",
"three": "^0.146.0",
"three-stdlib": "^2.10.2",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@monaco-editor/react": "^4.4.6",
"@next/bundle-analyzer": "^12.0.10",
"@types/node": "^17.0.39",
"@types/react": "^18.0.10",
"@types/three": "^0.141.0",
"autoprefixer": "^10.4.12",
"eslint": "^8.17.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.3.0",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"json-server": "^0.17.0",
"next-compose-plugins": "^2.2.1",
"next-offline": "^5.0.5",
"postcss": "^8.4.18",
"prettier": "^2.6.2",
"prisma": "^4.5.0",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.3",
"url-loader": "^4.1.1"
}
}