-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.71 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
{
"name": "spacesvr-starter",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "yarn prettier && yarn eslint",
"eslint": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --list-different 'src/**/*.{js,jsx,ts,tsx,md}'",
"process-gltf": "bash ./scripts/process-gltf.sh"
},
"dependencies": {
"@alch/alchemy-web3": "^1.1.12",
"@react-three/drei": "7.21.1",
"@react-three/fiber": "6.0.14",
"@react-three/postprocessing": "^2.0.5",
"@walletconnect/web3-provider": "^1.6.6",
"ethers": "^5.5.1",
"glsl-noise": "^0.0.0",
"moralis": "^0.0.134",
"next": "^10.0.9",
"next-pwa": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-moralis": "^0.3.0",
"react-spring": "9.1.2",
"seedrandom": "^3.0.5",
"simplex-noise": "^3.0.0",
"spacesvr": "latest",
"three": "^0.127.0",
"web3": "^1.6.1",
"web3-react": "^5.0.5"
},
"devDependencies": {
"@types/node": "^15.3.1",
"@types/react": "^17.0.6",
"@types/react-dom": "^17.0.5",
"@types/three": "^0.127.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"babel-plugin-glsl": "^1.0.0",
"babel-plugin-macros": "^3.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"glslify": "^7.1.1",
"prettier": "^2.2.1",
"r3f-perf": "^0.79.0",
"typescript": "^4.2.4"
},
"resolutions": {
"spacesvr/**/@react-three/fiber": "6.0.14"
},
"browserify": {
"transform": [
"glslify"
]
}
}