-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "klyntar-explorer",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start -H 0.0.0.0",
"lint": "next lint",
"test": "TZ=UTC jest --config jest.config.unit.ts",
"test:integration": "TZ=UTC jest --config jest.config.integration.ts",
"test:all": "TZ=UTC jest --projects jest.config.unit.ts jest.config.integration.ts"
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@ethereumjs/tx": "^4.1.2",
"@ethersproject/abi": "^5.7.0",
"@mui/icons-material": "next",
"@mui/material": "next",
"@mui/material-nextjs": "next",
"@svgr/webpack": "^8.1.0",
"@vercel/analytics": "^1.3.1",
"clsx": "^2.1.1",
"hash-wasm": "^4.11.0",
"next": "latest",
"numeral": "^2.0.6",
"react": "latest",
"react-apexcharts": "^1.4.1",
"react-dom": "latest",
"react-fast-marquee": "^1.6.5",
"react-json-formatter": "^0.4.0",
"web3": "^1.10.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "latest",
"@types/numeral": "^2.0.5",
"@types/react": "latest",
"@types/react-dom": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"jest": "^29.7.0",
"jest-module-name-mapper": "^0.1.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "latest",
"webpack": "^5.94.0"
}
}