forked from GaloyMoney/galoy-pay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.02 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
{
"name": "galoy-pay",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier '**/*.{js,ts,tsx,json}' --write",
"eslint-check": "eslint \"{pages,components,lib}/**/*.ts\"",
"eslint-fix": "eslint \"{pages,components,lib}/**/*.ts\" --fix",
"tsc-check": "tsc --noEmit --skipLibCheck",
"check-code": "yarn prettier-check && yarn eslint-check && yarn tsc-check",
"dev:docker": "docker compose up",
"build:docker": "docker build -t galoy-pay .",
"codegen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/client": "^3.7.12",
"@galoymoney/client": "^0.1.42",
"bech32": "^2.0.0",
"bitcoinjs-lib": "5.0.5",
"bolt11": "1.3.4",
"bootstrap": "^4.5.2",
"copy-to-clipboard": "^3.3.2",
"cross-fetch": "^3.1.5",
"graphql": "^16.6.0",
"html2canvas": "^1.4.1",
"i18n-js": "^3.9.2",
"ioredis": "^5.3.1",
"lnurl-pay": "^1.0.1",
"lodash.debounce": "^4.0.8",
"next": "^12.3.0",
"original-url": "^1.2.3",
"react": "^17.0.2",
"react-app-polyfill": "^2.0.0",
"react-bootstrap": "^1.6.4",
"react-currency-input-field": "^3.6.10",
"react-dom": "^17.0.2",
"react-lottie": "^1.2.3",
"react-qrcode-logo": "^2.8.0",
"react-refresh": "^0.14.0",
"react-timer-hook": "^3.0.5",
"react-to-print": "^2.14.12",
"subscriptions-transport-ws": "^0.11.0",
"use-debounce": "^8.0.4",
"use-react-screenshot": "^3.0.0"
},
"devDependencies": {
"@graphql-codegen/add": "^4.0.1",
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/client-preset": "^3.0.1",
"@graphql-codegen/typescript": "^3.0.2",
"@graphql-codegen/typescript-operations": "^3.0.2",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@types/bootstrap": "^5.1.6",
"@types/eslint": "^8.2.0",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^18.15.13",
"@types/prettier": "^2.7.0",
"@types/react": "^17.0.30",
"@types/react-dev-utils": "^9.0.11",
"@types/react-dom": "^17.0.0",
"@types/react-lottie": "^1.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.3.0",
"eslint-config-next": "^13.3.2",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^5.6.4",
"eslint-webpack-plugin": "^3.0.1",
"prettier": "^2.4.1",
"react-dev-utils": "^12.0.1",
"ts-pnp": "1.2.0",
"typescript": "^4.4.4"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"resolutions": {
"**/**/minimist": ">=1.2.6",
"**/**/follow-redirects": ">=1.14.7",
"**/@types/react": "^17.0.30",
"**/@types/react-dom": "^17.0.0"
}
}