This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.76 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "komodo",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"serve-polygon": "vue-cli-service serve --mode polygon",
"build-polygon": "vue-cli-service build --mode polygon",
"lint": "vue-cli-service lint",
"run-ganache": "ganache-cli -s 123",
"compile-contracts": "hardhat compile",
"deploy:kovan": "yarn compile-contracts && node tools/deploy-all.js",
"test": "yarn compile-contracts && hardhat test"
},
"dependencies": {
"@aave/protocol-v2": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/test-helpers": "^0.5.10",
"@typechain/ethers-v5": "^6.0.5",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.2.2",
"@uniswap/v3-core": "git+https://github.com/Uniswap/uniswap-v3-core.git",
"@uniswap/v3-sdk": "^3.1.0",
"axios": "^0.21.1",
"chai": "^4.3.4",
"chart.js": "2.9.3",
"core-js": "^2.6.5",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.3.1",
"hardhat": "^2.4.0",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"lodash": "^4.17.21",
"redstone-api": "^0.4.3",
"redstone-flash-storage": "^1.3.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"vue": "^2.6.10",
"vue-chartjs": "^3.5.1",
"vue-gauge": "^1.0.3",
"vue-loaders": "^4.1.4",
"vue-router": "^3.0.3",
"vue-timers": "^2.0.4",
"vue-toast-notification": "^0.6.2",
"vuetify": "^2.4.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/test-helpers": "^0.5.10",
"@typechain/ethers-v5": "^6.0.5",
"@types/lodash": "^4.14.170",
"@types/mocha": "^8.2.2",
"@vue/cli-plugin-babel": "^3.0.3",
"@vue/cli-plugin-e2e-cypress": "^3.0.3",
"@vue/cli-plugin-eslint": "^3.0.3",
"@vue/cli-plugin-unit-jest": "^3.0.3",
"@vue/cli-service": "^3.0.3",
"@vue/test-utils": "1.0.0-beta.29",
"axios": "^0.21.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"chai": "^4.3.4",
"chai-almost": "^1.0.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.4.0",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"lodash": "^4.17.21",
"node-sass": "^4.12.0",
"redstone-node": "^0.4.19",
"sass": "~1.32.0",
"sass-loader": "^10.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"vue-cli-plugin-vuetify": "^2.4.1",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.7.0"
}
}