-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.79 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.79 KB
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
97
98
99
100
{
"name": "react-three-next",
"version": "2.0.0",
"authors": [
"Renaud ROHLINGER <https://twitter.com/onirenaud>"
],
"license": "MIT",
"private": true,
"engines": {
"node": ">=14"
},
"dependencies": {
"@ducanh2912/next-pwa": "^9.4.0",
"@headlessui/react": "^1.7.18",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-three/drei": "^9.80.2",
"@react-three/fiber": "^8.13.6",
"@react-three/postprocessing": "^2.15.1",
"@react-three/rapier": "^1.1.2",
"@react-three/xr": "^5.7.1",
"@reduxjs/toolkit": "^2.0.1",
"@types/bignumber.js": "^5.0.0",
"@types/crypto-js": "^4.2.2",
"axios": "^1.6.6",
"bitcoin-address-validation": "^2.2.3",
"classnames": "^2.5.1",
"coinkey": "^3.0.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"ethers": "^6.10.0",
"formik": "^2.4.5",
"framer-motion": "^10.15.1",
"framer-motion-3d": "^10.18.0",
"glsl-random": "^0.0.5",
"gsap": "^3.12.2",
"leva": "^0.9.35",
"maath": "^0.10.4",
"next": "^14.1.0",
"next-plugin-svgr": "^1.1.10",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-redux": "9.0.4",
"react-svg": "^16.1.32",
"react-virtuoso": "^4.6.2",
"redux-deep-persist": "^1.0.7",
"redux-persist": "^6.0.0",
"sass": "^1.66.1",
"sats-connect": "^1.1.2",
"split-type": "^0.3.4",
"swr": "^2.2.4",
"three": "^0.156.1",
"three-stdlib": "^2.24.2",
"tunnel-rat": "^0.1.2",
"use-keyboard-shortcut": "^1.1.6",
"valtio": "^1.13.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.13",
"@types/node": "^20.5.9",
"@types/react": "^18.2.21",
"@types/three": "^0.158.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.47.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"file-loader": "^6.2.0",
"glslify": "^7.1.1",
"glslify-loader": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.27",
"prettier": "^3.0.1",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"url-loader": "^4.1.1"
},
"scripts": {
"lint": "next lint --fix",
"dev-clean": "rm -rf .next && next dev",
"dev": "next dev -p 8080",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"prettier": "yarn prettier --list-different \"./src/**/*.{ts,tsx,md,css,scss}\" \"./app/**/*.{ts,tsx,md,css,scss}\"",
"prepare": "husky install"
},
"lint-staged": {
"*.(js|jsx|tsx|ts)": [
"yarn prettier",
"yarn lint"
],
"*.(md|json|scss|css)": "prettier --list-different"
}
}