-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
97 lines (97 loc) · 2.8 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
{
"name": "kakaswap",
"description": "",
"homepage": "https://kakaswap.xyz",
"version": "1.0.0-beta",
"repository": {
"url": "https://github.com/419Research/kakaswap-frontend"
},
"author": {
"url": "https://avnu.fi",
"name": "AVNU Team"
},
"main": "index.js",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up-latest": "yarn upgrade-interactive --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@chakra-ui/button": "2.0.0",
"@chakra-ui/color-mode": "2.0.0",
"@chakra-ui/layout": "2.0.0",
"@chakra-ui/radio": "2.0.0",
"@chakra-ui/react": "2.0.2",
"@chakra-ui/system": "2.0.2",
"@chakra-ui/theme-tools": "2.0.0",
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.4",
"@emotion/server": "11.11.0",
"@emotion/styled": "11.11.5",
"@fontsource/inter-tight": "^5.0.20",
"@fontsource/lexend": "4.5.10",
"@fortawesome/fontawesome-svg-core": "6.1.1",
"@fortawesome/free-brands-svg-icons": "6.1.1",
"@fortawesome/pro-duotone-svg-icons": "6.1.1",
"@fortawesome/pro-light-svg-icons": "6.1.1",
"@fortawesome/pro-regular-svg-icons": "6.1.1",
"@fortawesome/pro-solid-svg-icons": "6.1.1",
"@fortawesome/react-fontawesome": "0.1.18",
"@tanstack/react-query": "^5.36.2",
"@web3modal/ethers": "^4.2.1",
"@web3modal/wagmi": "^4.2.1",
"awesome-debounce-promise": "2.1.0",
"bignumber.js": "^9.1.2",
"ethers": "^6.12.1",
"framer-motion": "6.3.3",
"i": "0.3.7",
"lodash.debounce": "4.0.8",
"material-react-toastify": "1.0.1",
"next": "12.3.4",
"next-pwa": "5.5.2",
"next-seo": "5.4.0",
"react": "18.3.1",
"react-async-hook": "4.0.0",
"react-dom": "18.3.1",
"react-icons": "5.3.0",
"use-deep-compare-effect": "1.8.1",
"viem": "^2.10.9",
"wagmi": "2.12.17",
"web3": "^4.10.0"
},
"devDependencies": {
"@commitlint/config-conventional": "16.2.4",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "14.2.0",
"@types/node": "22.7.5",
"@types/react": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"babel-jest": "28.1.0",
"commitlint": "19.5.0",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"eslint-config-sznm": "0.2.1",
"husky": "9.0.11",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"lint-staged": "15.2.7",
"next-sitemap": "2.5.20",
"prettier": "2.6.2",
"standard-version": "9.3.2",
"typescript": "4.9.5"
}
}