-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.39 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
{
"name": "pierprotocol",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pages:build": "npx @cloudflare/next-on-pages",
"pages:deploy": "npm run pages:build && wrangler pages deploy .vercel/output/static",
"pages:watch": "npx @cloudflare/next-on-pages --watch",
"pages:dev": "npx wrangler pages dev .vercel/output/static --compatibility-date=2023-12-18 --compatibility-flag=nodejs_compat"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"@sei-js/react": "^3.2.0",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.35",
"@solana/wallet-adapter-wallets": "^0.19.26",
"@solana/web3.js": "^1.90.0",
"axios": "^1.6.7",
"bootstrap": "^5.3.2",
"next": "^14.1.0",
"next-redux-wrapper": "^8.1.0",
"react": "^18.2.0",
"react-bootstrap": "^2.9.2",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-redux": "^9.0.4",
"react-spinners": "^0.13.8",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"sass": "^1.69.5",
"web3": "^4.3.0"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.8.2",
"eslint": "^8",
"eslint-config-next": "^14.1.0",
"eslint-plugin-next-on-pages": "^1.8.2",
"vercel": "^33.0.1"
}
}