-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 2.12 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
{
"name": "comet-extension-template",
"version": "0.1.0",
"type": "module",
"scripts": {
"web:dev": "vite",
"web:build": "tsc && vite build",
"web:deploy": "tsc && vite build && node script/ipfs.js",
"web:preview": "vite preview",
"web:test": "jest",
"forge:build": "forge build",
"forge:test": "script/test.sh",
"forge:lint": "solhint '{src,script,test}/**/*.sol'",
"forge:playground": "script/playground.sh"
},
"dependencies": {
"@compound-finance/comet-extension": "^0.0.5",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@ethersproject/abi": "^5.6.2",
"@ethersproject/bignumber": "^5.4.2",
"@ethersproject/contracts": "^5.6.1",
"@ethersproject/experimental": "^5.5.0",
"@ethersproject/providers": "^5.7.0",
"@ethersproject/units": "^5.4.0",
"@web3-react/core": "8.0.35-beta.0",
"@web3-react/metamask": "8.0.28-beta.0",
"@web3-react/network": "8.0.27-beta.0",
"@web3-react/types": "8.0.20-beta.0",
"@web3-react/url": "8.0.25-beta.0",
"comet": "https://github.com/compound-finance/comet.git#c54ccc62e06186bdf237048ac7c9f3ce34d813b4",
"compound-config": "https://github.com/compound-finance/compound-config.git#0815f079ebe6c7421361b3334f7b8eaab50722b0",
"compound-styles": "https://github.com/compound-finance/compound-styles.git#fc29b8a832c698920f2fcf7a06d978c4580a48e1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-polyfill-node": "^0.10.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.3.0",
"@types/jest": "^27.4.1",
"@types/node": "17.0.21",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-react": "^2.0.1",
"@web3-react/types": "8.0.20-beta.0",
"eslint": "8.9.0",
"ethers": "^5.6.9",
"ipfs-http-client": "^52.0.5",
"jest": "^28.0.8",
"sass": "^1.49.8",
"solhint": "^3.3.6",
"ts-jest": "^28.0.8",
"typescript": "4.5.5",
"vendoza": "0.0.4",
"vite": "^3.0.7"
},
"packageManager": "yarn@3.2.0",
"volta": {
"node": "18.8.0"
}
}