-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.99 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.99 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
80
81
82
83
84
85
86
{
"name": "meteora-meme-strategy",
"version": "1.0.0",
"description": "Solana meme-pool fee-harvest strategy using Meteora DLMM",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"strategy": "ts-node src/strategy.ts",
"example": "ts-node src/example.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"lint": "tsc --noEmit",
"clean": "rm -rf dist coverage"
},
"keywords": [
"solana",
"meteora",
"dlmm",
"meme",
"strategy",
"defi"
],
"author": "",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@meteora-ag/dlmm": "^1.0.0",
"@solana/spl-token": "^0.3.9",
"@solana/web3.js": "^1.98.2",
"axios": "^1.6.0",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"decimal.js": "^10.4.3",
"dotenv": "^16.3.1",
"node-cron": "^3.0.3",
"winston": "^3.11.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/bn.js": "^5.1.5",
"@types/bs58": "^4.0.4",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.0",
"@types/node-cron": "^3.0.8",
"jest": "^29.7.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": [
"<rootDir>/src",
"<rootDir>/tests"
],
"testMatch": [
"**/__tests__/**/*.test.ts",
"**/?(*.)+(spec|test).ts"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts",
"!src/index.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"transformIgnorePatterns": [
"node_modules/(?!(@meteora-ag|@solana)/)"
]
}
}