-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "rsslookup",
"version": "2.0.0",
"type": "module",
"description": "A free tool to find the RSS feed for any website.",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"dev:wrangler": "vite build --mode wrangler && wrangler dev",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src/",
"format": "prettier --write .",
"test": "vitest",
"deploy": "vite build && wrangler deploy"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.19.0",
"@tanstack/react-router": "^1.141.6",
"@tanstack/react-start": "^1.141.7",
"@upstash/ratelimit": "^2.0.7",
"@upstash/redis": "^1.36.0",
"@vitejs/plugin-react": "^5.1.2",
"dotenv": "^17.2.3",
"htmlparser2": "^10.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hot-toast": "^2.6.0",
"tldts": "^7.0.19",
"vinxi": "^0.5.11"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260131.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.1",
"jsdom": "^30.0.1",
"postcss": "^8.4.8",
"prettier": "^3.5.3",
"tailwindcss": "^3.0.23",
"typescript": "^5.7.0",
"typescript-eslint": "^8.54.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.14",
"wrangler": "^4.56.0"
}
}