-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
123 lines (123 loc) · 3.52 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@jup-ag/terminal",
"version": "3.2.0",
"private": false,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"tsup": "tsup && npx tailwindcss --yes -i ./src/styles/globals.css -o ./dist/global.css",
"start": "next start",
"lint": "next lint",
"format:fix": "prettier --write src",
"build-widget": "NODE_ENV=production MODE=widget webpack",
"analyse": "NODE_ENV=production MODE=widget ANALYSE=true webpack"
},
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./tailwind": "./dist/tailwind.config.js",
"./css": "./dist/global.css"
},
"typesVersions": {
"*": {
"index": [
"dist/index.d.ts"
]
}
},
"peerDependencies": {
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.87.6",
"react": "^18",
"react-dom": "^18"
},
"dependencies": {
"@jup-ag/math": "4.0.0-beta.21",
"@jup-ag/react-hook": "6.1.0",
"@jup-ag/wallet-adapter": "0.2.0",
"@mercurial-finance/optimist": "0.3.2",
"@popperjs/core": "^2.11.8",
"@project-serum/anchor": "^0.26.0",
"@radix-ui/react-popover": "^1.1.1",
"@solana/spl-token": "0.1.8",
"@solana/spl-token-registry": "~0.2.4574",
"@solana/wallet-adapter-wallets": "^0.19.22",
"@tanstack/react-query": "^4.36.1",
"bn.js": "5.2.1",
"bs58": "5.0.0",
"class-variance-authority": "^0.7.0",
"classnames": "2.3.2",
"clsx": "^2.1.1",
"decimal.js": "10.4.3",
"jazzicon": "^1.5.0",
"jotai": "^2.8.3",
"jsbi": "4.3.0",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.428.0",
"next": "13.4.19",
"next-seo": "5.15.0",
"next-themes": "0.2.1",
"react-hook-form": "7.42.1",
"react-instantsearch": "~7.7.0",
"react-number-format": "5.1.3",
"react-popper": "^2.3.0",
"react-syntax-highlighter": "^15.5.0",
"react-use": "^17.5.0",
"react-virtualized-auto-sizer": "1.0.7",
"react-window": "1.8.8",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"typesense": "1.7.2",
"typesense-instantsearch-adapter": "~2.8.0"
},
"devDependencies": {
"@jup-ag/common": "6.0.0-beta.9",
"@svgr/webpack": "^6.5.1",
"@types/bn.js": "^5.1.5",
"@types/bs58": "^4.0.4",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "18.11.5",
"@types/react": "18.0.23",
"@types/react-dom": "18.0.7",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-virtualized-auto-sizer": "~1.0.4",
"@types/react-window": "~1.8.8",
"autoprefixer": "10.4.13",
"css-loader": "^6.11.0",
"css-minimizer-webpack-plugin": "^4.2.2",
"cssnano": "^5.1.15",
"esbuild-plugins-node-modules-polyfill": "^1.6.6",
"eslint": "8.26.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "^8.10.0",
"mini-css-extract-plugin": "^2.9.0",
"next-transpile-modules": "10.0.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"postcss": "^8.4.38",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^7.8.3",
"prettier": "^3.3.2",
"react-twitter-embed": "^4.0.4",
"sass": "^1.77.6",
"sass-loader": "^13.3.3",
"style-loader": "^3.3.4",
"stylus": "^0.59.0",
"svg-inline-loader": "^0.8.2",
"tailwindcss": "3.3.3",
"ts-loader": "^9.5.1",
"tsup": "8.2.4",
"typescript": "5.2.2",
"webpack": "^5.92.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^4.10.0"
},
"pnpm": {
"overrides": {
"@solana/web3.js": "1.87.6",
"@solana/buffer-layout": "4.0.0"
}
}
}