-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 949 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 949 Bytes
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
{
"name": "tiktok-discord-bot-tutorial",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"start:dev": "ts-node-dev src/index.ts",
"start:prod": "node dist/index.js",
"build": "tsc",
"watch": "tsc -w",
"deploy-commands": "ts-node src/deploy-commands.ts"
},
"keywords": [],
"author": "JCoNet LTD",
"license": "ISC",
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"devDependencies": {
"@types/node": "^22.10.10",
"@types/node-cron": "^3.0.11",
"prisma": "^6.2.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@prisma/client": "6.2.1",
"axios": "^1.7.9",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"glob": "^11.0.1",
"groq-sdk": "^0.12.0",
"node-cron": "^3.0.3"
}
}