-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.22 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.22 KB
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
{
"name": "@web3-systems/multichain-database",
"description": "MultiChain database for Web3 Entities: Accounts, Transactions, Contracts, Logs, Sets and Computations",
"private": false,
"author": "Kames Geraghty",
"license": "MIT",
"version": "0.1.0",
"homepage": "https://github.com/web3-systems/multichain-database",
"bugs": "https://github.com/web3-systems/multichain-database/issues",
"engines": {
"node": ">=10"
},
"module": "dist/multichain-database.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"lint:fix": "tsdx lint --fix",
"watch": "tsdx watch",
"package:build": "tsdx build",
"package:lint": "tsdx lint",
"package:test": "tsdx test",
"package:watch": "tsdx watch",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf .cache",
"clean:test": "jest --clearCache",
"docs": "yarn typedoc --plugin typedoc-plugin-markdown --hideBreadcrumbs true --namedAnchors true",
"docs:html": "yarn typedoc --plugin none --out docs",
"prepare": "husky install",
"_postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"peerDependencies": {},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
},
"dependencies": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@ethersproject/transactions": "^5.5.0",
"@types/lodash": "^4.14.178",
"axios": "^0.24.0",
"dexie": "^3.2.0",
"lodash": "^4.17.21",
"lokijs": "^1.5.12",
"query-string": "^7.0.1"
},
"devDependencies": {
"@types/lokijs": "^1.5.7",
"debug": "^4.3.3",
"husky": "^7.0.4",
"pinst": "^2.1.6",
"prettier": "^1.19.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.8",
"typescript": "^4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "tsdx test",
"pre-push": "tsdx build"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}