-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.69 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
{
"name": "t3wallet",
"version": "0.1.0",
"description": "A tezos web wallet",
"author": "Yumeng Wang",
"private": true,
"scripts": {
"start": "cross-env COMPILE_ON_DEMAND=none BABELRC=1 BROWSER=none HOST=0.0.0.0 umi dev",
"start:https": "cross-env HTTPS=1 CERT='../../../server.crt' KEY='../../../server.key' COMPILE_ON_DEMAND=none BABELRC=1 BROWSER=none HOST=0.0.0.0 umi dev",
"build": "cross-env BABELRC=1 umi build",
"lint": "eslint --fix --ext .js src",
"test": "umi test",
"precommit": "npm run lint"
},
"theme": {
"primary-color": "#1088ae"
},
"dependencies": {
"@ledgerhq/hw-transport-u2f": "^4.24.0",
"antd-input-password": "^0.3.0",
"axios": "^0.18.0",
"basil-tezos-ledger": "^0.0.1",
"bignumber.js": "^7.2.1",
"bip32": "^1.0.2",
"bip39": "^2.5.0",
"bs58check": "^2.1.1",
"classnames": "^2.2.6",
"dva": "^2.3.2",
"global": "^4.3.2",
"libsodium-wrappers": "^0.7.3",
"nprogress": "^0.2.0",
"path-to-regexp": "^2.2.1",
"pbkdf2": "^3.0.16",
"prop-types": "^15.6.2",
"qrcode-react": "^0.1.16",
"react-blockies": "^1.3.0",
"react-copy-to-clipboard": "^5.0.1",
"react-helmet": "^5.2.0",
"react-intl": "^2.4.0",
"react-timeout": "^1.1.1",
"umi": "^1.3.18"
},
"devDependencies": {
"babel-plugin-module-resolver": "^3.1.1",
"cross-env": "^5.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"husky": "^0.14.3",
"prettier": "^1.14.3",
"umi-plugin-dll": "^0.2.1",
"umi-plugin-dva": "^0.9.1",
"umi-plugin-routes": "^0.1.5"
}
}