-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1012 Bytes
/
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
{
"name": "superfluid-stream-gated-discord-server",
"version": "1.0.0",
"private": true,
"description": "A discord bot that allows users to stream gated content in exchange for Superfluid tokens",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon -x node --inspect index.js --ext js",
"start": "node index.js",
"commands:deploy": "node deploy-commands.js"
},
"keywords": [],
"author": "Salman Dabbakuti",
"license": "ISC",
"dependencies": {
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/transactions": "^5.7.0",
"@prisma/client": "^4.13.0",
"cors": "^2.8.5",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"node-cron": "^3.0.2"
},
"devDependencies": {
"nodemon": "^2.0.22",
"prisma": "^4.13.0"
}
}