-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.66 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
{
"name": "explorer-fe",
"version": "1.2.7",
"description": "Explorer for inspecting and analyzing EVM & Cosmos based blockchains",
"scripts": {
"dev": "next",
"build": "jest && next build",
"start": "next start",
"lint": "eslint",
"prepare": "husky install",
"prettier": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"semantic": "semantic-release"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@astradefi/address-converter": "^0.4.1",
"@astraprotocol/astra-ui": "1.0.45",
"@cosmjs/crypto": "^0.29.0",
"@cosmjs/encoding": "^0.29.0",
"@reduxjs/toolkit": "^1.8.5",
"@sentry/nextjs": "^7.20.0",
"@solarswap/sdk": "^1.0.12",
"abi-decoder": "^2.4.0",
"axios": "^0.27.2",
"bignumber.js": "^9.1.0",
"chart.js": "^3.9.1",
"chartjs-adapter-dayjs": "^1.0.0",
"clsx": "^1.2.1",
"dayjs": "^1.11.5",
"ethers": "^5.7.1",
"humps": "^2.0.1",
"lodash": "^4.17.21",
"next": "12.3.1",
"next-intl": "^2.7.5",
"next-seo": "^5.14.1",
"nextjs-google-analytics": "^2.2.1",
"numeral": "^2.0.6",
"prismjs": "^1.29.0",
"qs": "^6.11.0",
"react": "18.2.0",
"react-chartjs-2": "^4.3.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-markdown": "8.0.0",
"react-redux": "^8.0.2",
"react-toastify": "^9.1.1",
"react-tooltip": "^4.5.0",
"react-transition-group": "^4.4.5",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"ripemd160": "^2.0.2",
"sharp": "^0.31.2",
"swr": "^1.3.0",
"web3": "^1.8.0",
"web3-utils": "^1.8.0",
"xss": "^1.0.14"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.185",
"@types/node": "^18.8.3",
"@types/numeral": "^2.0.2",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"cypress": "^12.7.0",
"eslint": "^8.23.1",
"eslint-config-next": "^12.3.1",
"husky": "^8.0.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"prettier": "^2.7.1",
"sass": "^1.54.9",
"semantic-release": "^20.1.1",
"typescript": "^4.8.4"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}