forked from IndexCoop/index-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.58 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
{
"name": "index-app",
"version": "2.0.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"hardhat": "npx hardhat node",
"hardhat:fund": "npx hardhat accounts --network custom",
"start": "next start",
"lint": "next lint",
"lint:fix": "npx prettier --write ./src && npx eslint ./src --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@aave/contract-helpers": "1.28.1",
"@aave/math-utils": "1.28.1",
"@arcxmoney/analytics": "^2.0.3",
"@bgd-labs/aave-address-book": "2.27.0",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/open-sauce-sans": "^5.0.7",
"@headlessui/react": "1.7.19",
"@heroicons/react": "^2.1.3",
"@indexcoop/flash-mint-sdk": "3.4.1",
"@indexcoop/tokenlists": "1.52.0",
"@rainbow-me/rainbowkit": "^2.0.7",
"@sentry/nextjs": "8.8.0",
"@tanstack/react-query": "5.36.2",
"@typeform/embed-react": "4.0.0",
"@visx/visx": "^3.8.0",
"dayjs": "1.11.11",
"eslint": "8.42.0",
"eslint-config-next": "^13.5.4",
"ethers": "^5.7.2",
"framer-motion": "11.2.6",
"lodash.merge": "^4.6.2",
"next": "^13.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "2.1.0",
"react-loading-skeleton": "^3.3.1",
"use-debounce": "^10.0.1",
"viem": "2.10.9",
"wagmi": "2.9.2"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.5",
"@types/jest": "^29.5.2",
"@types/lodash.merge": "^4.6.7",
"@types/mocha": "^10.0.1",
"@types/node": "^20.12.6",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"autoprefixer": "^10.4.17",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"hardhat": "^2.19.1",
"hardhat-gas-reporter": "^1.0.9",
"jest": "^29.5.0",
"postcss": "^8.4.35",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "^5.1.3"
}
}