-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
93 lines (93 loc) · 2.94 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
{
"name": "lnstxbridge-frontend",
"version": "1.0.3",
"scripts": {
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"production": "react-scripts build && serve -p 443 --ssl-cert /etc/letsencrypt/live/testnet.lnswap.org/fullchain.pem --ssl-key /etc/letsencrypt/live/testnet.lnswap.org/privkey.pem -s build",
"redirect": "serve -p 80 redirect/",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"zip": "cd build && zip -r build.zip * && mv build.zip .. && cd .."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version",
"last 2 edge version"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/pseudozach/lnstxbridge-frontend"
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@fontsource/roboto": "^4.5.5",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.2",
"@stacks/connect": "^6.10.2",
"@stacks/connect-react": "^11.0.0",
"@stacks/network": "^2.0.1",
"@stacks/profile": "^2.0.1",
"@stacks/ui": "^7.10.0",
"axios": "^0.21.1",
"big-integer": "^1.6.48",
"bignumber.js": "^9.0.1",
"bitcoinjs-lib": "^5.2.0",
"bn.js": "^5.2.1",
"bolt11": "^1.3.2",
"boltz-core": "^0.4.1",
"ethers": "^5.4.4",
"eventsource": "^1.1.0",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.7.2",
"qrcode-parser": "^1.2.0",
"qrious": "^4.0.2",
"react": "^17.0.2",
"react-confetti": "^4.0.1",
"react-copy-to-clipboard": "^5.0.4",
"react-device-detect": "^1.17.0",
"react-dom": "^17.0.2",
"react-icons": "^3.11.0",
"react-jss": "^10.9.0",
"react-loader-spinner": "^3.1.14",
"react-notifications-component": "^1.1.1",
"react-qr-reader": "^2.2.1",
"react-redux": "^7.2.4",
"react-responsive-carousel": "^3.2.22",
"react-responsive-modal": "^4.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.4",
"react-switch": "^5.0.1",
"redux": "^4.1.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"web3": "^1.5.2",
"web3modal": "^1.9.4",
"webln": "^0.2.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/plugin-syntax-decorators": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-preset-es2020": "^1.0.2",
"conventional-changelog": "^3.1.24",
"conventional-changelog-cli": "^2.1.1",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"prettier": "^1.19.1"
}
}