This repository was archived by the owner on Oct 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.48 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.48 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
{
"name": "dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint:fix": "eslint --max-warnings 0 --fix --ext .ts,.tsx .",
"codegen": "graphql-codegen --config codegen.yml",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@apollo/client": "^3.8.8",
"@apollo/experimental-nextjs-app-support": "^0.5.2",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/joy": "5.0.0-beta.48",
"@mui/material": "^5.15.19",
"@opentelemetry/api": "^1.8.0",
"@opentelemetry/core": "1.24.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.51.1",
"@opentelemetry/instrumentation-graphql": "^0.40.0",
"@opentelemetry/instrumentation-http": "^0.51.1",
"@opentelemetry/instrumentation-net": "^0.36.0",
"@opentelemetry/resources": "^1.24.1",
"@opentelemetry/sdk-node": "^0.51.1",
"@opentelemetry/sdk-trace-node": "^1.24.1",
"@opentelemetry/semantic-conventions": "^1.24.1",
"@t3-oss/env-core": "^0.7.1",
"@t3-oss/env-nextjs": "^0.7.1",
"csv-parse": "^5.5.3",
"dotenv": "^16.3.1",
"graphql": "^16.8.1",
"next": "15.5.4",
"next-auth": "^4.24.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-qrcode-logo": "^3.0.0",
"recharts": "^2.12.6",
"zod": "^3.22.4"
},
"devDependencies": {
"@galoy/eslint-config": "workspace:^",
"@graphql-codegen/add": "^5.0.2",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/client-preset": "^4.2.4",
"@graphql-codegen/typescript": "^4.0.6",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@graphql-codegen/typescript-resolvers": "^4.0.6",
"@graphql-inspector/cli": "^4.0.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.4",
"@types/jest": "^29.5.12",
"@types/node": "20.11.24",
"@types/react": "18.2.62",
"@types/react-dom": "18.2.19",
"autoprefixer": "10.4.18",
"cypress": "^13.6.6",
"eslint": "8.57.0",
"eslint-config-next": "14.1.1",
"eslint-plugin-jest": "^28.2.0",
"eslint_d": "13.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "8.4.38",
"tailwindcss": "3.4.1",
"typescript": "5.3.3"
}
}