-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.66 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": "lndhubx-app",
"private": true,
"scripts": {
"dev": "cross-env NEXT_PUBLIC_BACK_ENV=dev NEXT_PUBLIC_DEBUG_MODE=1 PORT=3000 next dev",
"dev:umbrel": "cross-env NEXT_PUBLIC_BACK_ENV=dev NEXT_PUBLIC_UMBREL=1 NEXT_PUBLIC_DEBUG_MODE=1 PORT=3000 next dev",
"build": "cross-env NEXT_PUBLIC_BACK_ENV=production IS_LANDING=1 next build",
"build:umbrel": "cross-env NEXT_PUBLIC_BACK_ENV=production NEXT_PUBLIC_UMBREL=1 next build",
"build:dev": "cross-env NEXT_PUBLIC_BACK_ENV=dev next build",
"prettify": "prettier --write './**/*.{js,jsx,ts,tsx,scss,md,json}' --config ./.prettierrc",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@node-lightning/invoice": "^0.26.1",
"@reduxjs/toolkit": "^1.6.2",
"axios": "^0.24.0",
"big.js": "^6.1.1",
"bolt11": "^1.4.0",
"chalk": "^5.0.0",
"clsx": "^1.1.1",
"dayjs": "^1.10.7",
"eventemitter2": "^6.4.5",
"fast-sort": "^3.1.1",
"highcharts": "^9.3.2",
"highcharts-react-official": "^3.1.0",
"is-empty": "^1.2.0",
"js-cookie": "^3.0.1",
"jwt-decode": "^3.1.2",
"lodash-es": "^4.17.21",
"next": "^12.0.7",
"next-plausible": "^3.1.4",
"next-seo": "^4.28.1",
"qrcode.react": "^1.0.1",
"react": "17.0.2",
"react-cool-img": "^1.2.12",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"react-swipeable": "^6.2.0",
"react-toastify": "^8.1.0",
"react-tooltip": "^4.2.21",
"reconnecting-websocket": "^4.4.0",
"redux": "^4.1.2",
"sharp": "^0.29.3",
"store2": "^2.12.0",
"swr": "^1.1.0",
"tailwindcss": "^2.2.19",
"uuid": "^8.3.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.7",
"@types/axios": "^0.14.0",
"@types/big.js": "^6.1.2",
"@types/is-empty": "^1.2.1",
"@types/lodash-es": "^4.17.5",
"@types/node": "16.11.11",
"@types/react": "17.0.37",
"@types/react-redux": "^7.1.20",
"@types/uuid": "^8.3.3",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"import-sort-style-react": "^5.1.0",
"postcss": "^8.4.4",
"postcss-easy-import": "^3.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^7.0.1",
"prettier": "^2.5.1",
"prettier-plugin-import-sort": "^0.0.7",
"pretty-quick": "^3.1.2",
"redux-logger": "^3.0.6",
"sass": "^1.44.0",
"ts-essentials": "^9.0.0",
"typescript": "^4.5.4"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "import-sort-style-react"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"engines": {
"node": ">=14.15.4"
}
}