-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
55 lines (55 loc) · 1.89 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
{
"name": "handi-cat_wallet-tracker",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node ./dist/src/main.js",
"start:test": "tsc && node ./dist/src/test.js",
"postinstall": "prisma generate",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"db:migrate": "prisma migrate dev --skip-seed",
"db:backup": "npx ts-node scripts/backup-db.ts",
"db:seed": "npx ts-node scripts/seed-db.ts",
"wallets:cleanup": "npx ts-node scripts/cleanup-wallets.ts",
"format": "prettier --write \"**/*.{ts,tsx,md}\" --ignore-path .gitignore",
"format:check": "pnpm format --check",
"format:write": "pnpm format --write"
},
"keywords": [],
"author": "draco",
"license": "ISC",
"packageManager": "pnpm@8.15.6+sha512.77b89e9be77a2b06ad8f403a19cae5e22976f61023f98ad323d5c30194958ebc02ee0a6ae5d13ee454f6134e4e8caf29a05f0b1a0e1d2b17bca6b6a1f1159f86",
"dependencies": {
"@metaplex-foundation/mpl-token-metadata": "^2.0.0",
"@prisma/client": "^5.16.2",
"@prisma/extension-pulse": "^1.2.0",
"@raydium-io/raydium-sdk": "1.3.1-beta.58",
"@solana/spl-token": "^0.3.0",
"@solana/spl-token-registry": "^0.2.4574",
"@solana/web3.js": "^1.94.0",
"axios": "^1.7.7",
"bs58": "^6.0.0",
"chalk": "4.1.2",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"gradient-string": "^2.0.0",
"node-cron": "^3.0.3",
"node-telegram-bot-api": "^0.66.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/gradient-string": "^1.1.6",
"@types/node": "^20.14.9",
"@types/node-cron": "^3.0.11",
"@types/node-telegram-bot-api": "^0.64.7",
"prettier": "^3.3.3",
"prisma": "^5.16.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}