-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.49 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
{
"name": "wallet-tracking-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node index.ts",
"prettier": "concurrently \"npx prettier -w '**/*.{js,jsx,ts,tsx,json,.*}'\"",
"lint": "concurrently \"npx prettier --check '**/*.{js,jsx,ts,tsx,json,.*}'\" \"npx eslint . --max-warnings=0\"",
"lint:fix": "npx eslint . --fix",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@metaplex-foundation/js": "^0.20.1",
"@raydium-io/raydium-sdk": "^1.3.1-beta.58",
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": "^1.95.3",
"axios": "^1.7.7",
"bn.js": "^5.2.1",
"dotenv": "^16.4.5",
"fs": "^0.0.1-security",
"husky": "^9.0.11",
"nodemon": "^3.1.4",
"pm2": "^5.4.2",
"pumpdotfun-sdk": "^1.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/bs58": "^4.0.4",
"@types/node-telegram-bot-api": "^0.64.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"prettier": "^3.2.4",
"tsx": "^4.7.1"
}
}