-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.93 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.93 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
{
"name": "extension",
"version": "5.34.0",
"license": "Apache-2.0",
"prettier": "../.prettierrc.yaml",
"scripts": {
"setup": "yarn install && yarn allow-scripts",
"build": "webpack --config webpack.extension.js",
"build:experimental": "yarn build --env EXPERIMENTAL=true",
"build:production": "yarn build --env PRODUCTION",
"build:translations": "yarn build --env TRANSLATIONS=true",
"start": "webpack-dev-server --config webpack.dev.js",
"start:experimental": "yarn start --env EXPERIMENTAL=true",
"start:unpacked-extension": "yarn build --watch",
"test:e2e": "playwright test"
},
"dependencies": {
"@ledgerhq/hw-app-str": "7.2.0",
"@ledgerhq/hw-transport-webusb": "6.29.4",
"@reduxjs/toolkit": "2.5.0",
"@sentry/browser": "9.13.0",
"@shared/api": "1.0.0",
"@shared/constants": "1.0.0",
"@shared/helpers": "1.0.0",
"@stellar/design-system": "3.1.1",
"@stellar/typescript-wallet-sdk-km": "1.9.0",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/chrome": "0.0.287",
"@types/history": "5.0.0",
"@types/jsdom": "21.1.7",
"@types/lodash": "4.17.16",
"@types/node": "22.14.1",
"@types/qrcode.react": "3.0.0",
"@types/react": "19.0.12",
"@types/react-copy-to-clipboard": "5.0.7",
"@types/react-dom": "19.1.2",
"@types/react-redux": "7.1.34",
"@types/react-router-dom": "5.3.3",
"@types/redux": "3.6.31",
"@types/testing-library__jest-dom": "6.0.0",
"@types/webextension-polyfill": "0.12.0",
"@types/yup": "0.32.0",
"bignumber.js": "9.3.0",
"buffer": "6.0.3",
"classnames": "2.5.1",
"concurrently": "9.1.2",
"copy-webpack-plugin": "13.0.0",
"css-loader": "7.1.2",
"dotenv-webpack": "8.1.0",
"fetch": "1.1.0",
"formik": "2.4.6",
"html-loader": "5.1.0",
"html-webpack-plugin": "5.6.3",
"i18next": "25.0.1",
"i18next-browser-languagedetector": "8.0.5",
"i18next-resources-to-backend": "1.2.1",
"i18next-scanner-webpack": "0.9.1",
"jest-canvas-mock": "2.5.2",
"jest-environment-jsdom": "29.7.0",
"js-yaml": "^4.1.0",
"jsonschema": "1.5.0",
"lodash": "4.17.21",
"mini-css-extract-plugin": "2.9.2",
"prettier": "3.5.3",
"pretty-quick": "4.1.1",
"prop-types": "15.8.1",
"punycode": "2.3.1",
"qrcode.react": "4.2.0",
"react": "19.0.0",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "19.0.0",
"react-i18next": "15.4.1",
"react-redux": "9.2.0",
"react-router-dom": "7.5.1",
"redux": "5.0.1",
"sass": "1.86.3",
"sass-loader": "16.0.5",
"semver": "7.7.1",
"ses": "1.12.0",
"soroswap-router-sdk": "1.4.6",
"stellar-hd-wallet": "1.0.2",
"stellar-sdk": "yarn:@stellar/stellar-sdk@14.0.0-rc.3",
"stellar-sdk-next": "yarn:@stellar/stellar-sdk@14.0.0-rc.3",
"svg-url-loader": "8.0.0",
"tsconfig-paths-webpack-plugin": "4.2.0",
"tslib": "2.8.1",
"webextension-polyfill": "0.12.0",
"yup": "1.6.1"
},
"devDependencies": {
"@lavamoat/allow-scripts": "3.3.2",
"@playwright/test": "1.49.0",
"@sentry/webpack-plugin": "3.3.1",
"@svgr/webpack": "8.1.0",
"@types/js-yaml": "^4.0.9",
"@types/semver": "7.5.8",
"fork-ts-checker-webpack-plugin": "9.1.0",
"https-browserify": "1.0.0",
"os-browserify": "0.3.0",
"path-browserify": "1.0.1",
"process": "0.11.10",
"speed-measure-webpack-plugin": "1.5.0",
"stream-browserify": "3.0.0",
"stream-http": "3.2.0",
"terser-webpack-plugin": "5.3.14",
"thread-loader": "4.0.4",
"url": "0.11.1",
"util": "0.12.5"
},
"lavamoat": {
"allowScripts": {
"@testing-library/react>@testing-library/dom>aria-query>@babel/runtime-corejs3>core-js-pure": false,
"css-loader>webpack>watchpack>watchpack-chokidar2>chokidar>fsevents": false,
"stellar-hd-wallet>stellar-base>sodium-native": false,
"stellar-sdk>stellar-base>sodium-native": false
}
}
}