forked from CoinHippo-Labs/connext-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.13 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
{
"name": "connext-network-bridge",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build && next export",
"deploy": "aws s3 sync out/ s3://bridge.connext.network --acl public-read",
"dev-dev": "env-cmd -f .env.staging next dev",
"build-dev": "env-cmd -f .env.staging next build && next export",
"deploy-dev": "aws s3 sync out/ s3://staging.bridge.connext.network --acl public-read",
"dev-testnet": "NODE_ENV=test next dev",
"build-testnet": "NODE_ENV=test next build && next export",
"deploy-testnet": "aws s3 sync out/ s3://testnet.bridge.connext.network --acl public-read"
},
"dependencies": {
"@connext/nxtp-sdk": "^0.1.33",
"@nomad-xyz/sdk": "^1.5.1",
"@portis/web3": "^4.0.7",
"@walletconnect/web3-provider": "^1.7.1",
"base-64": "^1.0.0",
"bignumber.js": "^9.0.2",
"env-cmd": "^10.1.0",
"ethers": "^5.5.4",
"html-react-parser": "^1.4.7",
"https-browserify": "^1.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"next": "^12.0.7",
"nprogress": "^0.2.0",
"numeral": "^2.0.6",
"os-browserify": "^0.3.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^7.3.1",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-debounce-input": "^3.2.5",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-image": "^4.0.3",
"react-linkify": "^1.0.0-alpha",
"react-loader-spinner": "^5.1.2",
"react-popper": "^2.2.5",
"react-redux": "^7.2.4",
"react-reveal": "^1.2.2",
"react-stack-grid": "^0.7.1",
"react-switch": "^6.0.0",
"redux": "^4.1.0",
"redux-devtools-extension": "^2.13.9",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"walletlink": "^2.4.7",
"web3": "^1.7.0",
"web3modal": "^1.9.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.5",
"postcss-color-function": "^4.1.0",
"tailwindcss": "^3.0.7"
}
}