-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.05 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
{
"name": "learn-web3-dapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"solana:build:program": "cargo build-bpf --manifest-path=contracts/solana/program/Cargo.toml --bpf-out-dir=dist/solana/program",
"near:build:contract": "node contracts/near/compile.js",
"near:build:contract:debug": "node contracts/near/compile.js --debug",
"near:test": "cd contracts/near && cargo test -- --nocapture && cd -",
"near:test:verbose": "yarn near:build:contract:debug && cd contracts/near && cargo test -v -- --nocapture && cd -",
"truffle-polygon": "yarn global add truffle && cd ./contracts/polygon/SimpleStorage && yarn && truffle obtain --solc 0.8.0"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@celo/contractkit": "^1.2.4",
"@iov/crypto": "^2.5.0",
"@maticnetwork/maticjs": "^2.0.43",
"@metamask/detect-provider": "^1.2.0",
"@polkadot/api": "^4.17.1",
"@polkadot/rpc-provider": "^4.17.1",
"@solana/web3.js": "^1.15.0",
"@taquito/rpc": "^10.0.0",
"@taquito/signer": "^10.0.0",
"@taquito/taquito": "^10.0.0",
"@taquito/tzip16": "^10.1.0",
"@types/node": "^15.12.4",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-router-dom": "^5.1.7",
"@types/styled-components": "^5.1.10",
"antd": "^4.16.1",
"avalanche": "^3.7.0",
"axios": "^0.21.1",
"bn.js": "^5.2.0",
"ethereumjs-util": "^7.1.0",
"mz": "^2.7.0",
"near-api-js": "^0.41.0",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dropzone": "^11.3.4",
"react-feather": "^2.0.9",
"react-json-view": "^1.21.3",
"secretjs": "^0.16.1",
"styled-components": "^5.3.0",
"web3": "^1.5.0"
},
"devDependencies": {
"@types/depd": "^1.1.32",
"@types/mz": "^2.7.4",
"babel-plugin-styled-components": "^1.13.1",
"eslint": "7.29.0",
"eslint-config-next": "11.0.1",
"shelljs": "^0.8.4",
"typescript": "4.3.4"
}
}