forked from dappradar/nft-sales-adapters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "dappradar-nft-sales-adapters",
"version": "0.1.0",
"description": "Service from tracking NFT sales.",
"repository": {
"type": "git",
"url": "git+https://github.com/dappradar/nft-sales-adapters.git"
},
"keywords": [
"nft"
],
"author": "DappRadar",
"license": "gpl-3.0 license",
"homepage": "https://github.com/dappradar/nft-sales-adapters#readme",
"private": true,
"dependencies": {
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"dotenv": "^8.2.0",
"http-proxy": "^1.18.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"web3": "^1.3.4",
"web3-eth-abi": "^1.3.4",
"web3-utils": "^1.3.4",
"ws": "^8.2.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-nibble": "^5.1.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^10.2.11",
"prettier": "^1.19.1",
"prettylint": "^1.0.0"
},
"scripts": {
"lint": "eslint 'src/**/*.{js,json}' --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,json}": "eslint --fix"
}
}