-
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) · 776 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 776 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": "migration-tool",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun --hot index.ts",
"start": "bun index.ts",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.6",
"@types/mysql": "^2.15.27",
"@types/node": "^25.0.10",
"@types/pg": "^8.16.0",
"@types/pino-pretty": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@faker-js/faker": "^10.3.0",
"bullmq": "^5.67.1",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"ioredis": "^5.9.2",
"mysql2": "^3.16.3",
"pg": "^8.18.0",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3"
}
}