-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.9 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.9 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@v-bible/bible-scraper",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:prod": "prisma migrate deploy",
"prisma:migrate:sqlite": "pnpm prisma:migrate --schema ./prisma/sqlite/schema.prisma",
"prisma:migrate:pg": "pnpm prisma:migrate --schema ./prisma/pg/schema.prisma",
"prisma:reset": "prisma migrate reset",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@ghostery/adblocker-playwright": "2.11.3",
"@prisma/client": "6.12.0",
"async-retry": "1.3.3",
"better-sqlite3": "12.2.0",
"date-fns": "4.1.0",
"dotenv": "17.2.1",
"es-toolkit": "1.39.8",
"pdfjs-dist": "5.4.54",
"playwright": "1.54.1",
"rehype-parse": "9.0.1",
"rehype-remark": "10.0.1",
"rehype-remove-comments": "6.1.1",
"remark-stringify": "11.0.0",
"undici": "7.12.0",
"unified": "11.0.5",
"winston": "3.17.0"
},
"devDependencies": {
"@babel/core": "7.26.10",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@playwright/browser-chromium": "1.54.1",
"@types/async-retry": "1.4.9",
"@types/better-sqlite3": "7.6.13",
"@types/node": "20.11.24",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-playwright": "1.5.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"prettier": "3.6.2",
"prisma": "6.12.0",
"tsx": "4.20.3",
"typescript": "5.8.3"
}
}