-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "data-pipeline",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"db:generate": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:seed": "npx tsx ./src/tasks/seed/index.ts",
"db:studio": "prisma studio",
"db:seed:authors": "npx tsx ./src/tasks/seed/author.ts",
"db:seed:books": "npx tsx ./src/tasks/seed/book.ts",
"db:seed:genres": "npx tsx ./src/tasks/seed/genre.ts",
"db:seed:locations": "npx tsx ./src/tasks/seed/location.ts",
"index-authors": "npx tsx scripts/typesense/index-authors.ts",
"index-authors:alias": "pnpm index-authors -- alias-only",
"index-titles": "npx tsx scripts/typesense/index-titles.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.529.1",
"@neondatabase/serverless": "^0.9.0",
"@prisma/adapter-neon": "^5.12.1",
"@prisma/client": "5.12.1",
"@t3-oss/env-nextjs": "^0.9.2",
"airtable": "^0.12.2",
"aws-sdk": "^2.1574.0",
"big-json": "^3.2.0",
"colorthief": "^2.4.0",
"dotenv": "^16.4.5",
"gpt-tokens": "^1.3.3",
"inquirer": "^9.2.15",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.21",
"node-vibrant": "3.2.1-alpha.1",
"openai": "^4.37.1",
"puppeteer-core": "^22.4.0",
"slugify": "^1.6.6",
"typesense": "^1.7.2",
"uuid": "^9.0.1",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/big-json": "^3.2.4",
"@types/eslint": "^8.44.7",
"@types/inquirer": "^9.0.7",
"@types/json-stringify-safe": "^5.0.3",
"@types/lodash": "^4.17.0",
"@types/node": "^18.17.0",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.54.0",
"mysql2": "^3.6.1",
"prettier": "^3.1.0",
"prisma": "^5.12.1",
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}