forked from minswap/market-cap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.92 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
{
"name": "@minswap/market-cap",
"version": "0.1.12",
"description": "Transparent and accurate market cap for Cardano native tokens",
"main": "./build/index.js",
"module": "./build/index.es.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "rimraf build && rollup -c rollup.config.js",
"test": "jest",
"format": "prettier --write **/*.ts && eslint --fix --ext .ts .",
"check-format": "prettier --check **/*.ts && eslint --ext .ts .",
"run-market-cap": "ts-node internal/main.ts",
"prepare": "husky install"
},
"keywords": [
"minswap",
"cardano",
"dex",
"blockchain"
],
"author": "Minswap Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/minswap/market-cap.git"
},
"bugs": {
"url": "https://github.com/minswap/market-cap/issues"
},
"homepage": "https://github.com/minswap/market-cap#readme",
"dependencies": {
"@blockfrost/blockfrost-js": "^5.2.0",
"@minswap/market-cap": "^0.1.12",
"axios": "^1.3.3"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix --ext .ts"
]
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.4.0",
"@types/logfmt": "^1.2.6",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"babel-jest": "^29.4.2",
"esbuild": "^0.17.8",
"eslint": "^8.34.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"exponential-backoff": "^3.1.1",
"husky": "^8.0.3",
"jest": "^29.4.2",
"lint-staged": "^14.0.1",
"logfmt": "^1.3.2",
"prettier": "^2.8.4",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.9.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}