-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.12 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
72
73
74
75
76
77
78
79
80
{
"name": "beluga",
"version": "3.1.0",
"description": "",
"main": "index.ts",
"scripts": {
"build": "rm -rf dist/ && tsc -p tsconfig.json",
"start": "npm run build && NODE_ENV=production node dist/index.js",
"dev": "npm run build && NODE_ENV=development node dist/index.js",
"test": "NODE_ENV=test jest",
"lint": "eslint . --ext .ts",
"dump-leveldb": "npm run build && node ./dist/src/scripts/dump-leveldb.js",
"send-test-tweet": "npm run build && NODE_ENV=production node ./dist/src/scripts/send-test-tweet.js",
"crawl-swaps": "npm run build && NODE_ENV=development node ./dist/src/scripts/crawl-swaps.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benzumbrunn/beluga.git"
},
"keywords": [
"defichain"
],
"author": {
"name": "Ben Zumbrunn",
"email": "[email protected]",
"url": "https://github.com/benzumbrunn"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/benzumbrunn/beluga/issues"
},
"homepage": "https://github.com/benzumbrunn/beluga#readme",
"dependencies": {
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"config": "^3.3.6",
"leveldown": "^6.0.0",
"levelup": "^5.0.1",
"twitter": "^1.7.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/config": "0.0.39",
"@types/jest": "^26.0.24",
"@types/leveldown": "^4.0.3",
"@types/levelup": "^4.3.3",
"@types/node": "^16.3.1",
"@types/twitter": "^1.7.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-jest": "^27.0.6",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"ts-node": "^10.1.0",
"tsc-watch": "^4.4.0",
"typescript": "^4.3.5"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/dist/"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
}
}