-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "@dexioorg/dex-ido-core",
"version": "1.0.0-beta6",
"author": "dex.io",
"repository": {
"type": "git",
"url": "https://github.com/dexioorg/dex-ido-core"
},
"license": "GPL-3.0-or-later",
"files": [
"contracts/libraries",
"artifacts/contracts/DexchangeCore.sol/DexchangeCore.json",
"artifacts/contracts/DexIDOPool.sol/DexIDOPool.json",
"artifacts/contracts/libraries/**/*.json",
"!artifacts/contracts/libraries/**/*.dbg.json"
],
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"ethereum-waffle": "^3.3.0",
"ethereumjs-util": "^7.0.5",
"hardhat": "^2.6.2",
"hardhat-deploy": "^0.9.0",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"solc": "0.5.16",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"scripts": {
"build": "waffle",
"test": "export NODE_ENV=test && mocha",
"compile": "npx hardhat compile",
"deploy": "npx hardhat run scripts/deploy.js --network testnet",
"setup": "npx hardhat run scripts/setup.js --network testnet"
},
"dependencies": {
"dotenv": "^10.0.0"
}
}