-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 5.63 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 5.63 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "lightning-browser-extension",
"version": "3.11.0",
"description": "Lightning browser extension",
"private": true,
"repository": "https://github.com/bumi/lightning-browser-extension.git",
"author": {
"name": "Michael Bumann",
"url": "https://michaelbumann.com"
},
"license": "MIT",
"engines": {
"node": ">= 16",
"yarn": ">= 1.0.0"
},
"scripts": {
"dev:chrome": "NODE_ENV=development ALBY_API_URL=https://api.getalby.com TARGET_BROWSER=chrome webpack --watch",
"dev:firefox": "NODE_ENV=development ALBY_API_URL=https://api.getalby.com TARGET_BROWSER=firefox webpack --watch",
"dev:opera": "NODE_ENV=development ALBY_API_URL=https://api.getalby.com TARGET_BROWSER=opera webpack --watch",
"build:chrome": "NODE_ENV=production ALBY_API_URL=https://api.getalby.com TARGET_BROWSER=chrome webpack",
"build:firefox": "NODE_ENV=production ALBY_API_URL=https://api.getalby.com TARGET_BROWSER=firefox webpack",
"build:opera": "NODE_ENV=production ALBY_API_URL=https://api.getalby.com TARGET_BROWSER=opera webpack",
"build": "yarn build:chrome && yarn build:firefox && yarn build:opera",
"package": "./create-packages.sh",
"lint": "yarn lint:js && yarn tsc:compile && yarn format:fix",
"lint:js": "eslint src --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"lint:js:fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"tsc:compile": "tsc --noEmit",
"format": "prettier --check '**/*.(md|json)' 'src/**/*.(js|ts|jsx|tsx)'",
"format:fix": "prettier --loglevel silent --write '**/*.(md|json)' '(src|tests)/**/*.(js|ts|jsx|tsx)'",
"test:unit": "jest",
"test:e2e": "del-cli ./puppeteer-user-data-dir && npx playwright test",
"test": "yarn test:unit && yarn test:e2e",
"test:coverage": "jest --coverage --collectCoverageFrom='src/**/*.(ts|tsx)' --collectCoverageFrom='!src/**/*.stories.tsx'",
"prepare": "husky install"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.2.0",
"@getalby/sdk": "^3.9.0",
"@headlessui/react": "^1.7.18",
"@lightninglabs/lnc-web": "^0.3.1-alpha",
"@noble/ciphers": "^0.5.1",
"@noble/curves": "^1.9.1",
"@noble/hashes": "^1.8.0",
"@noble/secp256k1": "^2.2.3",
"@popicons/react": "^0.0.24",
"@scure/base": "^1.2.5",
"@scure/bip32": "^1.7.0",
"@scure/bip39": "^1.6.0",
"@tailwindcss/forms": "^0.5.10",
"axios": "^1.8.4",
"bech32": "^2.0.0",
"bitcoinjs-lib": "^6.1.7",
"bolt11-signet": "1.4.1",
"crypto-js": "^4.2.0",
"dexie": "^4.0.11",
"dayjs": "^1.11.13",
"elliptic": "^6.6.1",
"events": "^3.3.0",
"html5-qrcode": "^2.3.8",
"i18next-browser-languagedetector": "^8.1.0",
"i18next": "^23.11.5",
"liquidjs-lib": "^6.0.2-liquid.29",
"lnmessage": "^0.2.7",
"lodash.merge": "^4.6.2",
"lodash.pick": "^4.4.0",
"lodash.snakecase": "^4.1.1",
"nostr-tools": "^1.17.0",
"pubsub-js": "^1.9.5",
"react": "^18.2.0",
"react-confetti": "^6.4.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.5.2",
"react-i18next": "^15.0.1",
"react-loading-skeleton": "^3.5.0",
"react-modal": "^3.16.3",
"react-qr-code": "^2.0.15",
"react-router-dom": "^6.22.3",
"slip77": "^0.2.0",
"stream": "^0.0.3",
"tailwindcss": "^3.4.14",
"uuid": "^9.0.1",
"webextension-polyfill": "^0.10.0",
"zustand": "^5.0.4"
},
"devDependencies": {
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@jest/types": "^29.6.3",
"@playwright/test": "^1.39.0",
"@swc/core": "^1.3.95",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@types/chrome": "^0.0.248",
"@types/crypto-js": "^4.1.3",
"@types/elliptic": "^6.4.16",
"@types/lodash.merge": "^4.6.8",
"@types/lodash.pick": "^4.4.8",
"@types/lodash.snakecase": "^4.1.8",
"@types/pubsub-js": "^1.8.5",
"@types/react-dom": "^18.2.13",
"@types/react-modal": "^3.16.2",
"@types/uuid": "^9.0.6",
"@types/webextension-polyfill": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@webbtc/webln-types": "^3.0.0",
"autoprefixer": "^10.4.16",
"buffer": "^6.0.3",
"clean-webpack-plugin": "^4.0.0",
"complete-randomer": "^1.9.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"del-cli": "^5.1.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fake-indexeddb": "^4.0.1",
"filemanager-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-webextension-mock": "^3.8.9",
"lint-staged": "^15.0.2",
"mini-css-extract-plugin": "^2.7.6",
"msw": "^1.3.2",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-loader": "^7.3.3",
"pptr-testing-library": "^0.7.0",
"prettier": "^3.0.1",
"process": "^0.11.10",
"puppeteer": "^24.9.0",
"stream-browserify": "^3.0.0",
"swc-loader": "^0.2.3",
"terser-webpack-plugin": "^5.3.9",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-sources": "^3.2.3",
"wext-manifest-loader": "^3.0.0",
"wext-manifest-webpack-plugin": "^1.2.1"
}
}