-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
122 lines (122 loc) · 3.72 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
{
"name": "airswap.js",
"version": "0.2.22",
"description": "JavaScript Modules for AirSwap Developers",
"repository": "https://github.com/airswap/AirSwap.js",
"contributors": [
"Sam Walker <[email protected]>",
"Don Mosites <[email protected]>"
],
"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-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-plugin-class-property": "^1.0.6",
"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",
"ganache-cli": "^6.8.1",
"gh-pages": "^1.2.0",
"jest": "^23.6.0",
"jsdoc": "^3.5.5",
"lint-staged": "^7.2.0",
"npm-watch": "^0.6.0",
"pre-commit": "^1.2.2",
"prettier": "1.13.5"
},
"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",
"upgrade-contracts": "yarn add @airswap/indexer@latest @airswap/swap@latest @airswap/wrapper@latest @airswap/delegate@latest --dev && yarn add @airswap/order-utils@latest",
"upgrade-contracts-beta": "yarn add @airswap/indexer@beta @airswap/swap@beta @airswap/wrapper@beta @airswap/delegate@beta --dev && yarn add @airswap/order-utils@beta",
"generate": "cd src && node abiGen.js && yarn lint --fix",
"ganache_fork": "ganache-cli -f $(node get_alchemy.js)"
},
"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": {
"@airswap/constants": "^0.3.9",
"@airswap/delegate": "^2.6.9",
"@airswap/indexer": "^3.6.9",
"@airswap/light": "^2.2.0",
"@airswap/metadata": "1.0.7",
"@airswap/order-utils": "^0.3.20",
"@airswap/swap": "^5.4.8",
"@airswap/wrapper": "^3.6.9",
"@portis/web3": "^2.0.0-beta.16",
"axios": "^0.18.0",
"dotenv": "^8.2.0",
"ethers": "^4.0.46",
"eventsource": "^1.0.7",
"fortmatic": "^0.7.4",
"human-standard-token-abi": "^2.0.0",
"ismobilejs": "^0.5.1",
"isomorphic-fetch": "^2.2.1",
"jayson": "^3.1.2",
"keccak": "^2.0.0",
"lodash": "^4.17.11",
"redux": "^3.7.2",
"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": "^3.0.1",
"rlp": "^2.2.2",
"tcomb-validation": "^3.4.1",
"uuid4": "^1.1.4",
"validator": "^10.11.0",
"walletlink": "^1.0.0",
"web3": "^1.2.7"
},
"engines": {
"node": ">=10.0.0",
"yarn": "^1.13.0"
}
}