-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
137 lines (137 loc) · 4.55 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
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
{
"name": "stellar-account-viewer-v2",
"prettier": "@stellar/prettier-config",
"version": "1.3.0",
"license": "Apache-2.0",
"lint-staged": {
"src/**/*.ts?(x)": [
"eslint --fix --max-warnings 0"
]
},
"engines": {
"node": ">=18.x"
},
"dependencies": {
"@albedo-link/intent": "^0.12.0",
"@ledgerhq/hw-app-str": "^6.27.16",
"@ledgerhq/hw-transport-webusb": "^6.27.16",
"@reduxjs/toolkit": "^1.9.5",
"@stellar/design-system": "^0.6.0",
"@stellar/freighter-api": "^1.5.1",
"@stellar/frontend-helpers": "^2.1.4",
"@stellar/stellar-sdk": "^12.0.1",
"@stellar/typescript-wallet-sdk": "^1.5.0",
"@stellar/typescript-wallet-sdk-km": "^1.5.0",
"@svgr/webpack": "^8.0.1",
"@trezor/connect-plugin-stellar": "^9.0.3",
"@trezor/connect-web": "^9.2.4",
"amplitude-js": "^8.21.9",
"assert": "^2.0.0",
"bignumber.js": "^9.1.1",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"https-browserify": "^1.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"os-browserify": "^0.3.0",
"qrcode.react": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"react-router-dom": "^6.14.0",
"redux": "^4.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"styled-components": "^6.0.0-rc.6",
"url": "^0.11.1"
},
"scripts": {
"install-if-package-changed": "git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD | grep --quiet yarn.lock && yarn install || exit 0",
"start": "webpack serve --open --config webpack.dev.js",
"build": "NODE_ENV=production webpack --config webpack.prod.js",
"prod:build": "docker image build --build-arg AMPLITUDE_KEY=$AMPLITUDE_KEY -t account-viewer-next:localbuild .",
"prod:serve": "docker run -p 8000:80 account-viewer-next:localbuild",
"production": "yarn prod:build && yarn prod:serve",
"prepare": "husky install",
"pre-commit": "concurrently 'pretty-quick --staged' 'lint-staged' 'tsc --noEmit'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@stellar/eslint-config": "^2.1.2",
"@stellar/prettier-config": "^1.0.1",
"@stellar/tsconfig": "^1.0.2",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/amplitude-js": "^8.16.2",
"@types/jest": "^29.5.2",
"@types/ledgerhq__hw-transport-u2f": "^4.21.1",
"@types/ledgerhq__hw-transport-webusb": "^4.70.1",
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.2",
"@types/qrcode.react": "^1.0.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.2.6",
"@types/react-redux": "^7.1.25",
"@types/react-router-dom": "^5.3.3",
"@types/redux": "^3.6.0",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-loader": "^9.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.3.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"react-hot-loader": "^4.13.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.3",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"tslib": "^2.6.3",
"typescript": "^5.1.3",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}