-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "ftx-discord-integration",
"version": "0.0.1",
"main": "dist/index.js",
"scripts": {
"watch": "tsup src/* --outDir dist --watch",
"build": "tsup src/* --outDir dist",
"dev": "nodemon dist/index.js",
"start": "prisma generate && node dist/index.js"
},
"dependencies": {
"@discordx/importer": "^1.1.10",
"@discordx/utilities": "^5.1.0",
"@metaplex-foundation/js": "0.17.5",
"@metaplex-foundation/mpl-token-metadata": "^2.2.3",
"@prisma/client": "^4.3.1",
"@project-serum/anchor": "0.17.0",
"@solana/pay": "^0.2.2",
"@solana/spl-token": "0.2.0",
"@solana/web3.js": "^1.56.2",
"axios": "^0.27.2",
"bs58": "^5.0.0",
"cors": "^2.8.5",
"discord.js": "14.5.0",
"discordx": "^11.1.12",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"form-data": "^4.0.0",
"jwt-decode": "^3.1.2",
"nanoid": "2.1.11",
"node-cache": "^5.1.2",
"redis": "^4.4.0",
"reflect-metadata": "^0.1.13",
"web3.storage": "^4.4.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/nanoid": "2.1.0",
"@types/node": "^18.7.14",
"@types/node-cron": "^3.0.3",
"prisma": "^4.3.1",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
}
}