-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
117 lines (117 loc) · 3.92 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
{
"private": true,
"name": "ironfish-node-app",
"description": "Iron Fish Node App",
"version": "3.0.11",
"author": "IF Labs <engineering@iflabs.network> (https://iflabs.network)",
"main": "app/background.js",
"scripts": {
"dev": "npm run i18n && nextron",
"build-check": "npm run i18n && nextron build --no-pack",
"build": "npm run i18n && nextron build",
"lint": "eslint --fix --config .eslintrc.js .",
"format": "prettier --config .prettierrc --write .",
"prepare": "husky install",
"postinstall": "electron-builder install-app-deps && tsx scripts/patch-node-datachannel.ts",
"release": "npm run i18n && nextron build --publish always",
"extract:i18n": "formatjs extract \"renderer/{pages,components,sections,layouts,ui}/**/*.{js,ts,tsx}\" --format crowdin --id-interpolation-pattern \"[sha512:contenthash:base64:6]\" --out-file renderer/intl/locales/en-US.json",
"compile:i18n": "formatjs compile-folder --ast --format crowdin renderer/intl/locales renderer/intl/compiled-locales",
"i18n": "npm run extract:i18n && npm run compile:i18n",
"translate": "tsx scripts/openai-translator.ts",
"translate:diff": "tsx scripts/diff-translations.ts"
},
"license": "MPL-2.0",
"dependencies": {
"@ironfish/sdk": "2.8.1",
"@ironfish/rust-nodejs": "2.7.0",
"@ledgerhq/errors": "6.19.1",
"@ledgerhq/hw-transport-node-hid": "6.29.5",
"@zondax/ledger-ironfish": "1.0.0",
"@zondax/ledger-js": "1.0.1",
"electron-serve": "^1.1.0",
"keccak": "^3.0.4"
},
"devDependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.1",
"@chakra-ui/styled-system": "^2.9.1",
"@chakra-ui/system": "^2.6.1",
"@chakra-ui/theme-tools": "^2.1.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@ethersproject/bignumber": "^5.7.0",
"@formatjs/cli": "^6.2.4",
"@hookform/resolvers": "^3.3.2",
"@radix-ui/react-select": "^2.0.0",
"@tanstack/react-query": "^4.35.7",
"@trpc/client": "^10.38.5",
"@trpc/react-query": "^10.38.5",
"@trpc/server": "^10.38.5",
"@types/keccak": "^3.0.4",
"@types/lodash-es": "^4.17.9",
"@types/nedb": "^1.8.14",
"@types/node": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/tar": "^6.1.6",
"@types/uuid": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@zondax/ledger-ironfish": "^0.5.1",
"axios": "0.21.4",
"babel-plugin-formatjs": "^10.5.10",
"compare-versions": "6.1.0",
"consola": "^2.15.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"dotenv": "^16.3.1",
"electron": "32.0.1",
"electron-builder": "^24.6.4",
"electron-log": "5.0.0",
"electron-store": "^8.1.0",
"electron-trpc": "^0.5.2",
"electron-updater": "6.1.4",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"filesize": "^10.1.0",
"framer-motion": "^10.16.4",
"gpt-tokenizer": "^2.1.2",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"lodash-es": "^4.17.21",
"nedb": "^1.8.0",
"next": "^12.3.4",
"nextron": "^8.11.3",
"openai": "^4.20.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"react-icons": "^4.11.0",
"react-intl": "^6.5.5",
"react-markdown": "9.0.1",
"react-virtuoso": "^4.6.2",
"semver": "^7.6.0",
"tar": "^6.2.0",
"tsx": "^4.6.2",
"type-fest": "^4.6.0",
"typescript": "^5.2.2",
"usehooks-ts": "^2.9.1",
"uuid": "^9.0.1",
"zod": "^3.22.3"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write",
"npm run extract:i18n",
"git add renderer/intl/locales/en-US.json"
]
},
"resolutions": {
"@ledgerhq/errors": "^6.19.1"
}
}