-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
130 lines (130 loc) · 4.71 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
{
"name": "neon3",
"version": "3.4.0",
"description": "Light wallet for NEO blockchain",
"homepage": "https://github.com/CityOfZion/neon-wallet-desktop",
"author": "Coz (https://github.com/CityOfZion)",
"keywords": [],
"license": "MIT",
"main": "./out/main/index.js",
"scripts": {
"lint": "eslint . --fix",
"typecheck": "tsc --noEmit -p tsconfig.node.json --composite false",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "npm run build && electron-builder --mac --config",
"build:linux": "npm run build && electron-builder --linux --config",
"create-release:patch": "node scripts/create-release.js patch",
"create-release:minor": "node scripts/create-release.js minor",
"create-release:major": "node scripts/create-release.js major",
"generate-checksums": "node scripts/generate-checksums.js",
"prepare": "husky install",
"i18next:interfaces": "i18next-resources-for-ts interface -i src/renderer/src/locales/en -o src/shared/@types/i18next-resources.d.ts",
"playwright": "npm run build && npx playwright test",
"playwright:headless": "npx playwright test",
"playwright:ui": "npm run playwright -- --ui",
"playwright:report": "npx playwright show-report"
},
"dependencies": {
"@cityofzion/blockchain-service": "1.14.0",
"@cityofzion/bs-asteroid-sdk": "0.9.0",
"@cityofzion/bs-electron": "0.1.30",
"@cityofzion/bs-ethereum": "2.8.3",
"@cityofzion/bs-neo-legacy": "1.8.2",
"@cityofzion/bs-neo3": "1.9.2",
"@cityofzion/bs-swap": "0.5.1",
"@cityofzion/neon-core": "5.6.0",
"@cityofzion/neon-js": "5.6.0",
"@cityofzion/wallet-connect-sdk-wallet-core": "4.4.0",
"@cityofzion/wallet-connect-sdk-wallet-react": "4.0.18",
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/utils": "^2.0.0",
"@ledgerhq/devices": "^8.4.3",
"@ledgerhq/hw-transport": "6.31.3",
"@ledgerhq/hw-transport-node-hid-noevents": "6.30.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@reduxjs/toolkit": "^1.9.5",
"@sentry/electron": "^4.14.0",
"@sentry/react": "^7.83.0",
"@tanstack/react-query": "5.28.14",
"@tanstack/react-table": "^8.12.0",
"@tanstack/react-virtual": "^3.10.8",
"classnames": "^2.3.2",
"cmdk": "^1.0.4",
"compare-versions": "^6.1.1",
"date-fns": "^3.3.1",
"dotenv": "^16.3.1",
"echarts": "^5.5.0",
"electron-updater": "^6.1.1",
"ethers": "5.7.0",
"framer-motion": "^10.16.14",
"github-markdown-css": "^5.5.1",
"i18next": "^23.5.1",
"i18next-resources-for-ts": "^1.3.3",
"lodash": "^4.17.21",
"qrcode.react": "^3.1.0",
"react-focus-lock": "^2.13.5",
"react-i18next": "^13.3.0",
"react-icons": "^4.11.0",
"react-markdown": "^9.0.1",
"react-photo-album": "^2.3.1",
"react-redux": "^8.1.2",
"react-remove-scroll": "^2.6.3",
"react-router-dom": "^6.15.0",
"react-to-print": "^2.15.1",
"redux-persist": "^6.0.0",
"rehype-raw": "^7.0.0",
"reselect": "^5.1.1",
"sonner": "^1.4.0",
"ts-pattern": "^5.5.0",
"usb": "^2.14.0",
"uuid": "^9.0.1",
"ws": "^8.18.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^1.0.1",
"@electron-toolkit/eslint-config-ts": "^1.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@playwright/test": "^1.47.1",
"@tanstack/eslint-plugin-query": "^4.34.1",
"@types/node": "^20.6.0",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.6",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.15",
"electron": "29.1.6",
"electron-builder": "^24.6.3",
"electron-builder-notarize": "^1.2.0",
"electron-vite": "^2.1.0",
"eslint": "^8.47.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"postcss": "^8.4.29",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.66.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-node-polyfills": "^0.17.0",
"vite-plugin-svgr": "^3.2.0"
}
}