-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
32 lines (32 loc) · 906 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
{
"name": "base-chain-scanner-ts",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "bun run index.js",
"db:studio": "drizzle-kit studio --verbose",
"db:generate": "drizzle-kit generate: --schema ./drizzle/schema.ts",
"db:migrate": "bun ./src/database/migreate.ts",
"db:prod:migrate": "NODE_ENV=production bun ./drizzle/migrations.ts",
"db:push": "bun db:generate && bun db:migrate",
"db:fs": "bun db:reset && bun db:seed",
"db:drop": "drizzle-kit drop"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.1.0",
"bun-types": "^1.1.21",
"drizzle-kit": "^0.23.2",
"ethers-typescript-typings": "^0.0.4"
},
"peerDependencies": {
"typescript": "^5.5.4"
},
"dependencies": {
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.32.2",
"ethers": "5",
"postgres": "^3.4.4"
}
}