-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
100 lines (100 loc) · 3.23 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
{
"name": "rndao",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && pnpm format",
"lint:strict": "eslint --max-warnings=0 src",
"test": "jest",
"coverage": "jest --coverage",
"export": "next export",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@amplitude/analytics-browser": "^1.9.4",
"@date-io/date-fns": "^2.17.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hassanmojab/react-modern-calendar-datepicker": "^3.1.7",
"@mui/lab": "^5.0.0-alpha.121",
"@mui/material": "^5.11.6",
"@mui/x-date-pickers": "^6.18.6",
"@mui/x-tree-view": "^7.22.1",
"@rainbow-me/rainbowkit": "^2.2.0",
"@tanstack/react-query": "^5.59.19",
"@types/node": "18.11.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"3d-force-graph-vr": "^2.2.2",
"aframe": "^1.4.2",
"axios": "^1.2.2",
"clsx": "^1.2.1",
"d3-force": "^3.0.0",
"date-fns": "^2.30.0",
"eslint-config-next": "13.0.2",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.0",
"highcharts": "^11.4.1",
"highcharts-react-official": "^3.2.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-timezone": "^0.5.38",
"next": "^14.2.18",
"next-router-mock": "^0.9.9",
"oci-js-sdk": "^1.6.3",
"papaparse": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-force-graph": "^1.43.0",
"react-force-graph-2d": "^1.25.0",
"react-helmet-async": "^1.3.0",
"react-hotjar": "^5.5.0",
"react-icons": "^4.11.0",
"react-modern-calendar-datepicker": "^3.1.6",
"react-router-dom": "^6.4.3",
"react-timezone-select": "^1.3.2",
"react-toastify": "^9.1.1",
"sharp": "^0.33.5",
"timezones-list": "^3.0.1",
"typescript": "^5.6.3",
"viem": "^2.21.40",
"wagmi": "^2.12.25",
"zustand": "^4.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/d3-force": "^3.0.4",
"@types/lodash": "^4.14.202",
"@types/papaparse": "^5.3.8",
"@types/testing-library__user-event": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.5.0",
"eslint": "^8.56.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.18",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.2.2"
}
}