forked from mento-protocol/mento-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.07 KB
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
{
"name": "@celo-tools/mento-fi",
"version": "1.1.0",
"description": "A simple DApp for Celo Mento exchanges",
"keywords": [
"Celo",
"Mento",
"Granda",
"Exchange"
],
"author": "J M Rossy",
"repository": {
"type": "git",
"url": "https://github.com/celo-tools/mento-fi"
},
"homepage": "https://mento.finance",
"license": "Apache-2.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"clean": "rm -rf .next",
"type-check": "tsc",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@celo-tools/use-contractkit": "^1.3.0",
"@ethersproject/address": "^5.5.0",
"@metamask/inpage-provider": "6.0.1",
"@metamask/jazzicon": "https://github.com/jmrossy/jazzicon#7a8df28",
"@reduxjs/toolkit": "^1.6.2",
"bignumber.js": "^9.0.1",
"formik": "^2.2.9",
"frappe-charts": "^1.6.2",
"next": "12.0.3",
"next-persist": "^1.2.4",
"post-message-stream": "3.0.0",
"react": "^17.0.2",
"react-accessible-dropdown-menu-hook": "^3.1.0",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-select": "4.3.1",
"react-toastify": "^8.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.2",
"@types/node": "16.11.7",
"@types/react": "17.0.34",
"@types/react-dom": "17.0.11",
"@types/react-redux": "7.1.20",
"@types/react-select": "4.0.18",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.4.0",
"eslint": "7.32.0",
"eslint-config-next": "^12.0.3",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.3.1",
"jest-css-modules-transform": "^4.3.0",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"tailwindcss": "^2.2.19",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "4.4.4"
},
"resolutions": {
"@walletconnect/client": "2.0.0-beta.19",
"@walletconnect/types": "2.0.0-beta.19"
}
}