forked from StakerDAO/token-farm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.49 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
62
63
64
65
66
{
"name": "token-farm",
"version": "0.0.1",
"description": "",
"devDependencies": {
"@taquito/signer": "^8.1.0",
"@taquito/taquito": "^8.1.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"bignumber.js": "^9.0.1",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.21.0",
"fs-extra": "^9.0.0",
"ganache-cli": "6.12.1-tezos.0",
"lodash": "^4.17.19",
"onchange": "^7.0.2",
"promise-retry": "^1.1.1",
"rimraf": "^3.0.2",
"truffle": "^5.5.0-tezos.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"yarn-audit-fix": "^3.3.1"
},
"scripts": {
"clean": "rm -rf ./build",
"test": "truffle test",
"test:clean": "npm run clean && npm run test",
"test:watch": "onchange -i -k 'contracts/**' 'test/**' 'migrations/**' -- npm run test:clean",
"compile": "truffle compile",
"compile:clean": "npm run clean && npm run compile",
"compile:watch": "onchange -i -k 'contracts/**' 'test/**' 'migrations/**' -- npm run compile:clean",
"migrate": "truffle migrate",
"migrate:clean": "npm run clean && npm run migrate",
"migrate:watch": "onchange -i -k 'contracts/**' 'test/**' 'migrations/**' -- npm run migrate:clean",
"tools:start": "node ./scripts/tools.js start",
"tools:kill": "node ./scripts/tools.js kill",
"contracts:migrate": "node ./scripts/contracts.js migrate",
"tools:update": "node ./scripts/tools.js update",
"tools:clean": "node ./scripts/tools.js clean",
"tools:init": "node ./scripts/tools.js init",
"tools:restart": "node ./scripts/tools.js restart",
"wait-for-sandbox": "node ./scripts/sandbox/waitForNetwork.js",
"sandbox:start": "./scripts/sandbox/start_ganache-cli.sh",
"env:start": "npm run tools:start bbbox && npm run sandbox:start",
"migrate:dex": "npm run contracts:migrate quipuswap",
"env:kill": "npm run tools:kill bbbox",
"env:restart": "npm run tools:restart bbbox",
"env:clean": "npm run tools:kill bbbox && npm run tools:clean bbbox",
"commit": "git-cz",
"postinstall": "node ./scripts/postinstall.js",
"fix-ligo-version": "./scripts/fix-ligo-version.sh"
},
"author": "[email protected]",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}