-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.43 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "text-indexing",
"version": "1.0.0",
"private": true,
"description": "",
"license": "UNLICENSED",
"bin": {
"cli": "./dist/cli.js"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cli": "tsx ./src/bin/cli.ts",
"cli:debug": "tsx --inspect-brk ./src/bin/cli.ts",
"db:gen": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"test": "jest",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"docker:up": "docker compose -f docker-compose.yml -f docker-compose/elasticsearch.yml up -d",
"docker:down": "docker compose -f docker-compose.yml -f docker-compose/elasticsearch.yml down"
},
"dependencies": {
"@mozilla/readability": "^0.5.0",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-tooltip": "^1.1.2",
"@visx/responsive": "^3.10.2",
"@visx/scale": "^3.5.0",
"@visx/text": "^3.3.0",
"@visx/visx": "^3.11.0",
"@visx/wordcloud": "^3.3.0",
"axios": "^1.7.7",
"better-sqlite3": "11.3.0",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"commander": "12.1.0",
"date-fns": "^4.1.0",
"dotenv": "16.4.5",
"drizzle-orm": "0.33.0",
"env-var": "7.5.0",
"fast-xml-parser": "4.5.0",
"jsdom": "^25.0.1",
"lucide-react": "0.445.0",
"next": "14.2.13",
"qs": "^6.13.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.53.0",
"tailwind-merge": "2.5.2",
"tailwindcss-animate": "1.0.7",
"user-agents": "^1.1.331",
"winston": "3.14.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@elastic/elasticsearch": "8.15.0",
"@types/benchmark": "2.1.5",
"@types/better-sqlite3": "7.6.11",
"@types/jest": "29.5.12",
"@types/jsdom": "^21.1.7",
"@types/node": "22.5.5",
"@types/qs": "^6",
"@types/react": "18.3.8",
"@types/react-dom": "18.3.0",
"@types/user-agents": "^1",
"benchmark": "2.1.4",
"drizzle-kit": "0.22.8",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"jest": "29.7.0",
"postcss": "8.4.47",
"tailwindcss": "3.4.12",
"ts-jest": "29.2.5",
"tsx": "4.19.1",
"typescript": "5.6.2"
},
"packageManager": "yarn@4.4.1"
}