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
108 lines (108 loc) · 3.57 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.57 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
{
"name": "pay",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3002",
"start": "next start -p 3002",
"build": "next build",
"lint:fix": "eslint --max-warnings 0 --fix --ext .ts,.tsx .",
"codegen": "graphql-codegen --config codegen.yml",
"cypress:open": "cypress open",
"cypress:run": "cypress run --component && cypress run --e2e",
"cypress:run:e2e": "cypress run --component",
"cypress:run:component": "cypress run --component"
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@apollo/experimental-nextjs-app-support": "^0.11.4",
"@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.22.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-switch": "^1.0.3",
"@t3-oss/env-nextjs": "^0.6.1",
"bech32": "^2.0.0",
"bitcoinjs-lib": "5.0.5",
"bolt11": "1.4.1",
"bootstrap": "^4.5.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"copy-to-clipboard": "^3.3.2",
"graphql": "^16.9.0",
"graphql-ws": "^5.16.0",
"html2canvas": "^1.4.1",
"ioredis": "^5.3.1",
"js-lnurl": "^0.6.0",
"lodash.debounce": "^4.0.8",
"next": "14.2.26",
"next-auth": "^4.24.11",
"pino": "8.20.0",
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-currency-input-field": "^3.8.0",
"react-dom": "^18.3.1",
"react-lottie": "^1.2.3",
"react-qrcode-logo": "^3.0.0",
"react-select": "^5.8.0",
"react-to-print": "^2.14.12",
"ssr": "link:@apollo/experimental-nextjs-app-support/ssr",
"tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^8.0.4",
"use-react-screenshot": "^4.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@galoy/eslint-config": "workspace:^",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/client-preset": "^4.4.0",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-operations": "^4.3.0",
"@graphql-codegen/typescript-react-apollo": "^4.3.2",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^20.8.9",
"@types/original-url": "^1.2.0",
"@types/prettier": "^3.0.0",
"@types/react": "^18.3.2",
"@types/react-dev-utils": "^9.0.11",
"@types/react-dom": "^18.3.0",
"@types/react-lottie": "^1.2.6",
"@types/react-select": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^7.0.2",
"autoprefixer": "^10.4.17",
"cypress": "^13.15.0",
"eslint": "^8.52.0",
"eslint-config-next": "14.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^3.2.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-webpack-plugin": "^4.1.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react-dev-utils": "^12.0.1",
"tailwindcss": "^3.4.14",
"ts-pnp": "1.2.0",
"typescript": "5.6.3"
},
"eslintConfig": {
"extends": [
"react-app"
]
}
}