-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
98 lines (98 loc) · 2.81 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
{
"name": "neuron-wallet",
"productName": "Neuron",
"description": "CKB Neuron Wallet",
"homepage": "https://www.nervos.org/",
"version": "0.121.0",
"private": true,
"author": {
"name": "Nervos Core Dev",
"email": "dev@nervos.org",
"url": "https://github.com/nervosnetwork/neuron"
},
"repository": {
"type": "git",
"url": "https://github.com/nervosnetwork/neuron"
},
"main": "dist/main.js",
"license": "MIT",
"scripts": {
"start": "electron .",
"build": "tsc",
"watch": "tsc -w",
"start:dev": "yarn run build && electron .",
"start:debug": "yarn run build && electron --inspect=5858 .",
"clean": "npx rimraf dist",
"test": "jest --runInBand --collect-coverage --forceExit",
"test:watch": "jest --watch",
"lint": "eslint --fix --ext .ts,.js src",
"precommit": "lint-staged",
"rebuild:nativemodules": "electron-builder install-app-deps"
},
"lint-staged": {
"src/**/*.{js,cjs,mjs,jsx,ts,tsx}": [
"prettier --ignore-path ../../.prettierignore --write",
"eslint --fix",
"git add"
],
"tests/**/*.{js,cjs,mjs,jsx,ts,tsx}": [
"prettier --ignore-path ../../.prettierignore --write",
"eslint --fix",
"git add"
]
},
"dependencies": {
"@ckb-lumos/base": "0.23.0",
"@ckb-lumos/ckb-indexer": "0.23.0",
"@ckb-lumos/helpers": "0.23.0",
"@ckb-lumos/lumos": "0.23.0",
"@ckb-lumos/rpc": "0.23.0",
"@iarna/toml": "2.2.5",
"@ledgerhq/hw-transport-node-hid": "6.27.22",
"@magickbase/hw-app-ckb": "0.2.0-alpha.0",
"@spore-sdk/core": "0.1.0",
"archiver": "6.0.2",
"async": "3.2.5",
"bn.js": "4.12.0",
"chalk": "3.0.0",
"dotenv": "8.6.0",
"electron-log": "4.4.8",
"electron-updater": "6.3.0",
"electron-window-state": "5.0.3",
"elliptic": "6.6.0",
"i18next": "21.10.0",
"leveldown": "6.1.1",
"levelup": "4.4.0",
"reflect-metadata": "0.1.13",
"rxjs": "6.6.7",
"sha3": "2.1.4",
"sqlite3": "5.1.6",
"subleveldown": "4.1.4",
"tslib": "2.6.3",
"typeorm": "0.3.17",
"uuid": "8.3.2"
},
"devDependencies": {
"@electron/notarize": "2.3.2",
"@nervosnetwork/ckb-types": "0.109.1",
"@types/archiver": "6.0.2",
"@types/async": "3.2.24",
"@types/electron-devtools-installer": "2.2.5",
"@types/elliptic": "6.4.18",
"@types/iarna__toml": "2.0.5",
"@types/jest-when": "3.5.5",
"@types/ledgerhq__hw-transport": "4.21.8",
"@types/ledgerhq__hw-transport-node-hid": "4.22.5",
"@types/leveldown": "4.0.6",
"@types/levelup": "4.3.3",
"@types/sqlite3": "3.1.11",
"@types/uuid": "8.3.4",
"devtron": "1.4.0",
"electron": "30.0.0",
"electron-builder": "24.9.1",
"electron-devtools-installer": "3.2.0",
"jest-when": "3.6.0",
"neuron-ui": "0.121.0",
"typescript": "5.3.3"
}
}