-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 773 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 773 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
{
"name": "excel-to-postgres",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest",
"@types/pg": "^8.11.11",
"@types/pg-copy-streams": "^1.2.5"
},
"scripts": {
"start": "NODE_OPTIONS=\"--max-old-space-size=16384\" bun index.ts",
"generate-excel": "bun generate-excel.ts"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@aws-sdk/lib-storage": "^3.735.0",
"@faker-js/faker": "^9.4.0",
"dotenv": "^16.4.7",
"exceljs": "4.4.0",
"pg": "^8.13.1",
"pg-copy-streams": "^6.0.6",
"postgres": "3.4.4",
"sql-formatter": "^15.4.10",
"stream-json": "^1.9.1",
"xlsx": "^0.18.5",
"xlsx-stream-reader": "^1.1.1",
"xxhash-addon": "^2.0.3"
}
}