forked from airswap/airswap.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.61 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
{
"name": "airswap.js",
"version": "0.1.8",
"description": "JavaScript Modules for AirSwap Developers",
"repository": "https://github.com/airswap/AirSwap.js",
"author": "Sam Walker <sam.walker@fluidity.io>",
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.6.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"bignumber.js": "^4.1.0",
"eslint": "4.18.2",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-react-app": "3.0.0-next.b2fd8db8",
"eslint-loader": "1.9.0",
"eslint-plugin-class-property": "^1.0.6",
"eslint-plugin-flowtype": "2.41.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "7.5.1",
"flow-bin": "^0.76.0",
"gh-pages": "^1.2.0",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"lint-staged": "^7.2.0",
"md5": "^2.2.1",
"npm-watch": "^0.6.0",
"pre-commit": "^1.2.2",
"prettier": "1.13.5",
"redux": "^3.7.2",
"reselect": "^3.0.1"
},
"watch": {
"jsdoc": "src/**/*.js"
},
"scripts": {
"jsdoc": "jsdoc -c ./jsdoc.conf.json",
"watch": "npm-watch",
"dev": "watch && serve docs",
"test": "jest",
"build": "NODE_ENV='production' babel src -d lib --copy-files",
"predeploy": "npm run build && cp ./package.json ./lib/package.json",
"deploy": "gh-pages --dist lib --branch release",
"lint-staged": "lint-staged",
"lint": "eslint src --ext .js,.jsx",
"prettify": "prettier --write src/**/*.js",
"generate": "cd src && node generateReduxFromABI.js && yarn lint --fix"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"prettier --write",
"node_modules/eslint/bin/eslint.js --fix",
"git add"
],
"*.{css,json}": [
"prettier --write",
"git add"
]
},
"ignore": [
"./lib/**/*"
]
},
"peerDependencies": {
"redux": "^3.7.2",
"reselect": "^3.0.1"
},
"dependencies": {
"@ledgerhq/hw-app-eth": "^4.55.0",
"@ledgerhq/hw-transport-u2f": "^4.55.0",
"@portis/web3": "^2.0.0-beta.16",
"axios": "^0.18.0",
"buffer": "^5.2.1",
"ethereumjs-wallet": "^0.6.3",
"ethers": "^4.0.31",
"ethjs-provider-http": "^0.1.6",
"eventsource": "^1.0.7",
"fortmatic": "^0.7.4",
"greenlet": "^1.0.1",
"hdkey": "^1.1.1",
"human-standard-token-abi": "^2.0.0",
"ipfs-mini": "^1.1.5",
"ismobilejs": "^0.5.1",
"isomorphic-fetch": "^2.2.1",
"isomorphic-ws": "^4.0.1",
"keccak": "^2.0.0",
"lodash": "^4.17.11",
"openpgp": "^4.0.2",
"query-string": "^6.5.0",
"querystring": "^0.2.0",
"react-redux": "^5.1.1",
"redux-devtools-extension": "^2.13.7",
"redux-storage": "^4.1.2",
"redux-storage-decorator-filter": "^1.1.8",
"redux-storage-engine-localstorage": "^1.1.4",
"redux-thunk": "^2.3.0",
"reselect-tools": "^0.0.7",
"rlp": "^2.2.2",
"sse.js": "^0.4.4",
"tcomb": "^3.2.29",
"tcomb-validation": "^3.4.1",
"uuid4": "^1.1.4",
"validator": "^10.11.0",
"web3-provider-engine": "^15.0.0",
"web3-utils": "^1.2.1"
},
"engines": {
"node": ">=10.0.0",
"yarn": "^1.13.0"
}
}