-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "gtfs-postgres-import",
"version": "0.2.3",
"description": "",
"main": "dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"import": "node --experimental-specifier-resolution=node dist/index ",
"build": "npx tsc && copyfiles -u 1 src/sql/*.sql dist/",
"copy-files": "copyfiles -u 1 src/sql/*.sql dist/"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.0",
"@types/adm-zip": "^0.5.0",
"@types/papaparse": "^5.3.7",
"@types/pg": "^8.10.9",
"@types/pg-copy-streams": "^1.2.5",
"adm-zip": "^0.5.10",
"consola": "^3.2.3",
"csv-parse": "^5.4.0",
"csv-stringify": "^6.4.4",
"dotenv": "^16.3.1",
"papaparse": "^5.3.0",
"pg": "^8.11.3",
"pg-copy-streams": "^6.0.6",
"prisma": "^5.7.0",
"rimraf": "^5.0.5",
"stream-transform": "^3.2.10",
"tempy": "^3.1.0",
"typescript": "^5.1.6",
"zod": "^3.22.4",
"zod-prisma-types": "^2.7.4"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"copyfiles": "^2.4.1",
"eslint": "^8.44.0"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
}
}