-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.54 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
67
68
69
70
71
72
{
"name": "@integral/contracts",
"description": "Integral smart contracts.",
"license": "GPL-3.0-or-later",
"version": "0.1.0",
"engines": {
"node": ">=10",
"yarn": "^1.17.3"
},
"scripts": {
"lint": "yarn lint:prettier --check && yarn lint:eslint",
"lint:fix": "yarn lint:prettier --write && yarn lint:eslint --fix",
"lint:eslint": "eslint './{test,playground,deploy,scripts}/**/*.ts'",
"lint:prettier": "yarn prettier './{test,contracts,deploy,playground,scripts}/**/*.{ts,sol}'",
"clean": "rimraf ./build/",
"prebuild": "yarn clean",
"build": "waffle .waffle.json && typechain --target ethers-v5 --out-dir build/types 'build/*.json'",
"test": "mocha",
"deploy:amm": "ts-node deploy/amm/index.ts",
"deploy:token": "ts-node deploy/token/index.ts",
"prepublishOnly": "yarn build && yarn test",
"start": "ts-node playground/deploy.ts",
"execute": "ts-node scripts/bot/executeSingle.ts",
"monitor": "ts-node scripts/bot/monitor.ts",
"bot": "ts-node scripts/bot/run.ts",
"enable": "ts-node scripts/disables/enable.ts",
"disable": "ts-node scripts/disables/disable.ts",
"set-owner": "ts-node scripts/owner/index.ts",
"set-minter": "ts-node scripts/minter/index.ts",
"set-allocations": "ts-node scripts/allocations/setAllocations.ts",
"stop-option": "ts-node scripts/stop/index.ts",
"check-allocations": "ts-node scripts/allocations/checkAllocations.ts",
"preview": "ts-node scripts/preview/index.ts",
"skim": "ts-node scripts/skim/index.ts"
},
"devDependencies": {
"@resolver-engine/imports-fs": "^0.3.3",
"@typechain/ethers-v5": "^7.0.1",
"@types/argparse": "^2.0.2",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"argparse": "^2.0.1",
"axios": "^0.21.1",
"chai": "^4.3.4",
"chalk": "^4.1.0",
"csv-parser": "^3.0.0",
"eslint": "^7.15.0",
"ethereum-waffle": "^3.4.0",
"ethereumjs-util": "^7.0.7",
"ethers": "^5.4.0",
"ganache-cli": "^6.12.1",
"mocha": "^8.2.1",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"querystring": "^0.2.0",
"rimraf": "^3.0.2",
"sinon": "^9.2.4",
"solc": "^0.7.4",
"ts-node": "^9.0.0",
"typechain": "^5.1.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-core": "^1.0.0",
"@uniswap/v3-periphery": "^1.1.1",
"dotenv": "^8.2.0"
}
}