forked from interest-protocol/interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.46 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "interest-protocol-interface",
"description": "The frontend to interact with Interest Protocol contracts",
"license": "MIT",
"keywords": [
"DeFi",
"smart contracts",
"ethereum",
"web3",
"interest protocol"
],
"version": "0.1.0",
"private": false,
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@hookform/resolvers": "^2.8.8",
"@redstone-finance/evm-connector": "^0.0.21",
"@vercel/analytics": "^0.1.5",
"api-getresponse": "^1.0.0",
"decimal.js-light": "^2.5.1",
"ethers": "^5",
"next": "^12.2.0",
"next-intl": "^2.7.4",
"next-progress": "^2.0.1",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga4": "^1.4.1",
"react-hook-form": "^7.28.1",
"react-hot-toast": "^2.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-loading-skeleton": "^3.0.3",
"react-modal": "^3.14.4",
"react-slick": "^0.29.0",
"react-spring": "^9.5.0",
"react-switch": "^6.0.0",
"react-tooltip": "^4.2.21",
"toformat": "^2.0.0",
"use-debounce": "^8.0.4",
"uuid": "^8.3.2",
"wagmi": "^0.11.5",
"web-vitals": "^1.0.1",
"yup": "^0.32.11"
},
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"test": "jest",
"build": "next build",
"start": "next start",
"format": "prettier --write **/*.{js,ts,tsx}",
"lint": "eslint . --fix --ext ts --ext tsx --ext js",
"typechain": "rimraf types && typechain --target=ethers-v5 'sdk/abi/**/*.abi.json'",
"postinstall": "yarn typechain"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@emotion/babel-plugin": "^11.10.5",
"@emotion/eslint-plugin": "^11.2.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@typechain/ethers-v5": "^10.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^12.0.0",
"@types/ramda": "^0.28.11",
"@types/react": "^17.0.0",
"@types/react-slick": "^0.23.10",
"@types/react-dom": "^17.0.0",
"@types/react-infinite-scroller": "^1.2.3",
"@types/react-modal": "^3.13.1",
"@types/styled-system": "^5.1.11",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-plugin-styled-components": "^2.0.7",
"commitlint": "^17.4.2",
"commitlint-config-gitmoji": "^2.2.10",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"lint-staged": ">=10",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"typechain": "^8.0.0",
"typescript": "^4.8.3",
"vercel": "^24.0.1"
}
}