-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.53 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.53 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "quantamm-webapp",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "vite",
"dev": "vite",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write ./src",
"preview": "vite preview",
"codegen": "node -r dotenv/config ./node_modules/.bin/graphql-codegen dotenv_config_path=.env.local"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"dependencies": {
"@balancer/sdk": "^2.4.0",
"@fingerprintjs/fingerprintjs": "^4.6.2",
"@msgpack/msgpack": "^3.0.0-beta3",
"@react-spring/parallax": "^9.7.5",
"ag-charts-community": "^10.2.0",
"ag-charts-enterprise": "^10.2.0",
"ag-charts-react": "^10.2.0",
"ag-grid-community": "31.0.3",
"ag-grid-enterprise": "31.0.3",
"ag-grid-react": "31.0.3",
"antd": "^5.19.1",
"axios": "^1.7.5",
"better-react-mathjax": "^2.0.2",
"bignumber.js": "^9.1.2",
"buffer": "^6.0.3",
"csv-parse": "^5.2.2",
"csv-parser": "^3.0.0",
"date-fns": "^3.6.0",
"framer-motion": "^11.11.9",
"get-stream": "^6.0.1",
"graphql-tag": "^2.12.6",
"guid-typescript": "^1.0.9",
"lodash": "^4.17.21",
"lucide-react": "^0.428.0",
"moment": "^2.30.1",
"numeral": "^2.0.6",
"react": "^18.2.0",
"react-app-rewire-antd-theme": "^1.1.4",
"react-awesome-reveal": "^4.2.5",
"react-dom": "^18.2.0",
"react-grid-gallery": "^1.0.1",
"react-redux": "^8.1.3",
"react-router-dom": "^6.23.1",
"react-sticky-box": "^2.0.5",
"sass": "^1.75.0",
"viem": "^2.23.10",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@apollo/client": "^3.10.3",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@emotion/react": "^11.11.1",
"@formkit/auto-animate": "^0.8.2",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@reduxjs/toolkit": "^1.8.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.17.15",
"@types/node": "^20.0.0",
"@types/numeral": "^2.0.5",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"graphql": "^16.8.1",
"jsdom": "^27.0.1",
"postcss": "^8.4.38",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^9.1.3",
"prettier": "3.3.2",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vitest": "^4.0.18"
}
}