-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
108 lines (108 loc) · 3.28 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
{
"name": "classicetherwallet",
"version": "3.12.2",
"description": "Ethereum Classic blockchain interaction web tool",
"contributors": [
"Chimienti, Joe <[email protected]>"
],
"main": "gulpfile.js",
"author": "ClassicEtherWallet",
"homepage": "https://ethereumproject.github.io/etherwallet/",
"repository": {
"type": "git",
"url": "https://github.com/EthereumCommonwealth/etherwallet.git"
},
"bugs": {
"url": "https://github.com/ethereumcommonwealth/etherwallet/issues"
},
"license": "ISC",
"scripts": {
"dev": "gulp",
"zip": "gulp zip",
"build": "gulp build",
"dist": "gulp clean",
"format": "prettier --write \"app/**/*.js\"",
"precommit": "lint-staged",
"lint": "eslint app/scripts",
"lint:fix": "eslint app/scripts --fix",
"preinstall": "npx npm-force-resolutions"
},
"lint-staged": {
"app/**/*.js": [
"prettier --write",
"git add"
],
"app/**/*.less": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"angular": "^1.8.2",
"angular-animate": "^1.6.2",
"angular-sanitize": "^1.6.2",
"angular-translate": "^2.15.1",
"angular-translate-handler-log": "^2.15.1",
"bignumber.js": "^4.0.2",
"bip39": "^2.3.1",
"browserify": "^14.3.0",
"crypto-icons": "^1.0.10",
"detect-browser": "^1.7.0",
"eslint": "^5.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"ethereum-bip44": "^2.1.3",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-tx": "^1.3.0",
"ethereumjs-util": "^5.1.5",
"hdkey": "^0.7.1",
"html2js-browserify": "^1.3.0",
"husky": "^0.14.3",
"idna-uts46": "^1.0.1",
"install": "^0.10.1",
"lint-staged": "^7.2.0",
"marked": "^0.3.6",
"prettier": "^1.14.0",
"scryptsy": "^2.0.0",
"string-format": "^0.5.0",
"u2f-api": "^1.0.7",
"utf8": "^2.1.2",
"uuid": "^3.0.1",
"wallet-address-validator": "^0.1.0"
},
"dependencies": {
"@ledgerhq/hw-app-eth": "^4.24.0",
"@ledgerhq/hw-transport-u2f": "^4.28.0",
"@ledgerhq/hw-transport-webusb": "^6.2.0",
"archiver": "^1.3.0",
"axios": "^0.21.2",
"babel-polyfill": "^6.26.0",
"babelify": "^7.3.0",
"encoding": "^0.1.13",
"graceful-fs": "^4.2.6",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-bump": "^2.7.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.2",
"gulp-file-include": "^1.1.0",
"gulp-less": "^4.0.1",
"gulp-notify": "^3.0.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-shell": "^0.6.3",
"gulp-template": "^4.0.0",
"gulp-uglify": "^2.0.1",
"gulp-zip": "^4.0.0",
"npm": "^6.14.13",
"platform": "^1.3.6",
"run-sequence": "^1.2.2",
"trezor-connect": "^8.2.12",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"resolutions": {
"graceful-fs": "4.2.3"
}
}