-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.69 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "revesture-dapp",
"version": "2.0.0",
"authors": [
"@luxumbra (Twitter: @bdgrdev)"
],
"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 && EXPORT=true next-image-export-optimizer",
"analyze": "ANALYZE=true next build",
"start": "next start",
"fleek:deploy": "EXPORT=true next build && EXPORT=true next export && fleek site:deploy"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.17.0",
"@chakra-ui/icons": "1.1.3",
"@chakra-ui/react": "^1.8.8",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fleekhq/fleek-cli": "^0.1.8",
"@react-three/drei": "^9.2.0",
"@react-three/fiber": "^8.0.10",
"@react-three/postprocessing": "^2.3.2",
"@thirdweb-dev/react": "^2.0.7",
"@thirdweb-dev/sdk": "^2.0.37",
"@widgetbot/react-embed": "^1.4.0",
"babel-plugin-glsl": "^1.0.0",
"cloudinary-build-url": "^0.2.4",
"ethers": "^5.6.4",
"framer-motion": "4.1.17",
"global": "^4.4.0",
"glsl-random": "^0.0.5",
"gsap": "^3.5.1",
"leva": "^0.9.23",
"lil-gui": "^0.11.0",
"next": "^12.1.4",
"next-image-export-optimizer": "^0.9.5",
"next-images": "^1.8.4",
"next-optimized-images": "^2.6.2",
"next-seo": "^5.4.0",
"next-videos": "1.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"stats.js": "^0.17.0",
"three": "^0.139.2",
"three-stdlib": "^2.9.1",
"webfontloader": "^1.6.28",
"zustand": "^3.7.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.10",
"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",
"html-webpack-plugin": "^5.5.0",
"image-trace-loader": "^1.0.2",
"jimp": "^0.16.1",
"next-compose-plugins": "^2.2.1",
"next-offline": "^5.0.5",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"raw-loader": "^4.0.2",
"responsive-loader": "^2.3.0",
"url-loader": "^4.1.1",
"webp-loader": "^0.6.0"
}
}