-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.66 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": "portkey-bot-mini-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:testnet": "NEXT_PUBLIC_NETWORK_TYPE=testnet next dev",
"dev:testnet-https": "NEXT_PUBLIC_NETWORK_TYPE=testnet NEXT_PUBLIC_PORT=3000 node server.js",
"dev:main": "NEXT_PUBLIC_NETWORK_TYPE=production next dev",
"dev:main-https": "NEXT_PUBLIC_NETWORK_TYPE=production NEXT_PUBLIC_PORT=3001 node server.js",
"build-testnet": "NEXT_PUBLIC_NETWORK_TYPE=testnet next build",
"build:testnet": "NEXT_PUBLIC_NETWORK_TYPE=testnet next build",
"build:production": "NEXT_PUBLIC_NETWORK_TYPE=production next build",
"start:testnet": "NEXT_PUBLIC_NETWORK_TYPE=testnet next start",
"start:production": "NEXT_PUBLIC_NETWORK_TYPE=production next start",
"lint": "next lint"
},
"dependencies": {
"@aelf-web-login/utils": "^0.1.10",
"@aelf-web-login/wallet-adapter-base": "^0.1.10",
"@aelf-web-login/wallet-adapter-bridge": "^0.1.10",
"@aelf-web-login/wallet-adapter-night-elf": "^0.1.10",
"@aelf-web-login/wallet-adapter-portkey-aa": "^0.1.10",
"@aelf-web-login/wallet-adapter-portkey-discover": "^0.1.10",
"@aelf-web-login/wallet-adapter-react": "^0.1.10",
"@portkey/did-ui-react": "2.15.1",
"aelf-sdk": "^3.4.15",
"antd": "^5.20.5",
"axios": "^1.7.7",
"next": "14.2.7",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@sentry/nextjs": "^8.28.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"next-compose-plugins": "^2.2.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}