-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1017 Bytes
/
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
{
"name": "solidity-exchange-smart-contract",
"version": "1.0.0",
"description": "",
"private": "true",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jasielmacedo/solidity-exchange-smart-contract.git"
},
"scripts": {
"test": "truffle test",
"deploy": "truffle migrate --reset",
"compile": "truffle compile"
},
"keywords": [
"solidity",
"smart-contracts",
"ethereum",
"exchange",
"erc-20",
"erc-721",
"erc-1155"
],
"author": "jasiel macedo <jasielmacedo@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasielmacedo/solidity-exchange-smart-contract/issues"
},
"homepage": "https://github.com/jasielmacedo/solidity-exchange-smart-contract#readme",
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"truffle": "^5.4.17"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"bignumber.js": "^9.0.1",
"moment": "^2.29.1",
"web3": "^1.6.0"
}
}