-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "csv_consumer",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"start": "npm run db:migrate && node dist/index.js",
"dev": "nodemon src/index.ts",
"dev:db": "docker compose -f docker-compose.db.yaml up -d",
"build": "tsc",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate --config drizzle.config.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.23.0",
"drizzle-orm": "^0.32.0",
"express": "^4.19.2",
"multer": "^1.4.5-lts.1",
"pg": "^8.12.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.10",
"@types/pg": "^8.11.6",
"@types/uuid": "^10.0.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}