-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.53 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
{
"name": "blocktracker",
"version": "1.0.0",
"description": "Tracks blockchains for blocks transactions and serves data via API",
"type": "module",
"main": "dist/index.js",
"types": "./types/",
"scripts": {
"build": "rimraf dist && npx tsc",
"build:all": "npm run build",
"clean": "rimraf ./dist ./types",
"start": "npm run build && node --no-warnings dist/index.js",
"start:prod": "npm run build:all && cross-env NODE_ENV=production node dist/index.js",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules npx jest --detectOpenHandles",
"lint": "eslint ./src --ext .ts --fix",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-push": "npm run format && npm run lint"
}
},
"keywords": [
"dex",
"tokens",
"ohlcv",
"trading"
],
"author": "Salamandra Devs",
"devDependencies": {
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-eslint": "^8.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "5.3.2"
},
"dependencies": {
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"ethers": "^6.13.2",
"core": "file:../core",
"mongodb": "^6.6.2",
"oracle": "file:../oracle"
}
}