-
Notifications
You must be signed in to change notification settings - Fork 285
/
package.json
57 lines (57 loc) · 1.54 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": "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": {
"@types/lodash": "^4.14.182",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"dotenv": "^8.2.0",
"ethereum-input-data-decoder": "^0.4.2",
"http-proxy": "^1.18.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"web3": "^1.8.0",
"web3-eth-abi": "^1.3.4",
"web3-utils": "^1.3.4",
"ws": "^8.2.2",
"yup": "^1.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.18.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",
"ts-node": "^10.9.1",
"typescript": "^4.8.0"
},
"scripts": {
"lint": "eslint . --ext .ts --fix",
"prepare": "husky install",
"build": "rm -rf ./dist && tsc && copyfiles -u 1 ./src/**/*.json ./dist",
"docs": "docsify serve docs",
"test": "ts-node src/tester/test.ts"
},
"lint-staged": {
"*.{js,json}": "eslint --fix"
}
}