-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.23 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.23 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
{
"name": "randomizer-network",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"devNode": "nodemon server.js",
"dev": "HTTPS=true SSL_CRT_FILE=./.cert/new/cert.pem SSL_KEY_FILE=./.cert/new/key.pem next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"startNative": "HTTPS=true react-scripts start",
"start-staging": "REACT_APP_API_URL=wss://staging.api.blocknative.com/v0 REACT_APP_STAGING=true HTTPS=true react-scripts start",
"start-staging-dev": "REACT_APP_API_URL=wss://staging.api.blocknative.com/v0 REACT_APP_STAGING=true HTTPS=true NODE_ENV='development' nodemon server.js",
"start-local": "REACT_APP_API_URL=ws://localhost:3000/v0 REACT_APP_STAGING=true HTTPS=true NODE_ENV='development' nodemon server.js",
"buildNative": "react-scripts build react-scripts build",
"build-staging": "REACT_APP_API_URL=wss://staging.api.blocknative.com/v0 REACT_APP_STAGING=true react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@web3-onboard/coinbase": "^2.0.2",
"@web3-onboard/fortmatic": "^2.0.2",
"@web3-onboard/gnosis": "^2.0.1",
"@web3-onboard/injected-wallets": "^2.0.6",
"@web3-onboard/keepkey": "^2.0.3",
"@web3-onboard/keystone": "^2.0.3",
"@web3-onboard/ledger": "^2.0.4",
"@web3-onboard/magic": "^2.0.3",
"@web3-onboard/portis": "^2.0.0",
"@web3-onboard/react": "^2.1.6",
"@web3-onboard/torus": "^2.0.1",
"@web3-onboard/trezor": "^2.0.5",
"@web3-onboard/walletconnect": "^2.0.1",
"bnc-notify": "^1.9.4",
"eslint": "^8.16.0",
"ethers": "^5.5.2",
"ethers-multicall": "^0.2.1",
"moment": "^2.29.1",
"next": "12",
"next-videos": "1.4.0",
"nextjs-cors": "^2.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-toastify": "^8.1.0",
"recompose": "^0.30.0",
"uuid": "^8.3.2",
"vconsole": "^3.3.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"nodemon": "^2.0.15",
"truffle-assertions": "^0.9.2"
}
}