-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.45 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "Herion",
"version": "1.0.0-a",
"description": "A discord template written in TypeScript",
"main": "src/startup.ts",
"scripts": {
"start": "bun src/startup",
"dev": "bun --watch src/startup",
"dev:all": "turbo run dev drizzle:studio",
"start:all": "turbo run start",
"drizzle:generate": "drizzle-kit generate",
"drizzle:migrate": "drizzle-kit migrate",
"drizzle:studio": "drizzle-kit studio",
"drizzle:push": "drizzle-kit push",
"drizzle:g": "drizzle-kit generate",
"drizzle:m": "drizzle-kit migrate",
"drizzle:s": "drizzle-kit studio",
"drizzle:tour": "npm run drizzle:generate && npm run drizzle:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamTheDevDE/Herion.git"
},
"keywords": [
"typescript",
"ts",
"discord",
"template",
"client",
"bot",
"easy-to-use"
],
"author": "SamTheDevDE",
"license": "MIT",
"bugs": {
"url": "https://github.com/SamTheDevDE/Herion/issues"
},
"homepage": "https://github.com/SamTheDevDE/Herion#readme",
"dependencies": {
"@types/dateformat": "^5.0.3",
"@types/node": "^25.6.0",
"colors": "^1.4.0",
"concurrently": "^9.2.1",
"dateformat": "^5.0.3",
"discord.js": "^14.26.3",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"pg": "^8.20.0",
"typescript": "^6.0.3"
},
"devDependencies": {
"@types/pg": "^8.20.0",
"drizzle-kit": "^0.31.10"
}
}