-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
38 lines (38 loc) · 1.18 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
{
"name": "quipuswap",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./build",
"migrate": "yarn clean && truffle migrate",
"migrate-granadanet": "yarn clean && truffle migrate --network granadanet",
"migrate-granadanet-reset": "yarn clean && truffle migrate --network granadanet --reset",
"compile-dex": "node scripts/cli.js build-dex --no-json -o contracts",
"compile": "yarn clean && yarn compile-dex && truffle compile",
"start-sandbox": "ganache-cli --flavor tezos --seed alice --hardfork edo",
"test": "yarn clean && yarn compile && truffle test ",
"test:quick": "truffle test",
"postinstall": "patch-package"
},
"dependencies": {
"@taquito/signer": "^8.0.4-beta.0",
"@taquito/taquito": "^8.0.4-beta.0",
"bignumber.js": "^9.0.0",
"commander": "^5.1.0",
"dotenv": "^8.2.0",
"ganache-cli": "6.12.1-tezos.0",
"patch-package": "^6.2.2",
"truffle": "5.5.0-tezos.4",
"typescript": "^4.0.3"
},
"directories": {
"test": "./test"
},
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^7.2.0",
"ts-node": "^9.0.0"
}
}