-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 KB
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
{
"name": "bot-layout-ts",
"version": "0.0.0",
"description": "The typescript discord bot layout",
"main": "dist/index.js",
"engines": {
"node": ">=20.15.1"
},
"scripts": {
"lint": "gts lint",
"fix": "gts fix",
"build": "gts clean && tsc --project tsconfig.json && tsc-alias",
"start": "node dist/index.js",
"dev": "nodemon --legacy-watch --watch \"src/**\" --ext \"ts\" --exec \"ts-node -r tsconfig-paths/register ./src/index.ts\"",
"new:task": "ts-node scripts/task.ts",
"new:event": "ts-node scripts/event.ts",
"new:interaction": "ts-node scripts/interaction.ts"
},
"author": "Jarco-dev",
"dependencies": {
"@prisma/client": "^5.7.0",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"moment": "^2.29.4"
},
"devDependencies": {
"@types/inquirer": "^8.2.5",
"@types/node": "16.9.x",
"@types/node-cron": "^3.0.11",
"cron-validator": "^1.3.1",
"gts": "^5.2.0",
"handlebars": "^4.7.8",
"inquirer": "^8.2.5",
"node-cron": "^3.0.3",
"nodemon": "^3.0.2",
"prisma": "^5.7.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
}
}