-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.98 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
{
"name": "leverage.fun-bot",
"version": "0.0.1",
"description": "A bot that allows users to leverage.fun",
"main": "src/index.ts",
"packageManager": "[email protected]",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "export NODE_ENV=development && nodemon --watch src -e ts --exec node --import ./ts-node.register.mjs -r dotenv/config src/index.ts",
"build": "swc ./src -d dist && tsc-alias",
"build:fresh": "rm -rf dist && swc ./src -d dist && tsc-alias",
"start": "pnpm run build && node dist/src/index.js",
"start:fresh": "pnpm run build:fresh && node dist/src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=16"
},
"keywords": [
"leverage.fun"
],
"author": "Ritvik S <[email protected]>",
"license": "MIT",
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@honeybadger-io/js": "^6.10.1",
"@solana/spl-token": "^0.4.9",
"@solana/web3.js": "^1.95.5",
"@types/node-cron": "^3.0.11",
"axios": "^1.7.8",
"bn.js": "^5.2.1",
"bs58": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"mongoose": "^8.4.3",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.6.3",
"@types/bn.js": "^5.1.6",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^20.14.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.56.0",
"globals": "^15.6.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.1"
},
"type": "module"
}