-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "tensorfeed",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"prebuild": "tsx scripts/fetch-feeds.ts && tsx scripts/generate-llms-full.ts && tsx scripts/sync-x402-manifest.ts && tsx scripts/generate-premium-catalog.ts && tsx scripts/generate-crawler-domains.ts",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check:originals": "node scripts/check-originals-sync.mjs",
"prepare": "husky",
"test:web": "vitest run"
},
"dependencies": {
"lucide-react": "^1.7.0",
"next": "14.2.35",
"react": "^18",
"react-dom": "^18",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260426.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8",
"eslint-config-next": "14.2.35",
"husky": "^9.1.7",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^1.6.1"
}
}