-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.63 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
{
"name": "google_reader_clone",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev:frontend": "vite",
"dev:backend": "node server.js",
"dev": "npx concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest",
"preview": "vite preview"
},
"dependencies": {
"@extractus/article-extractor": "^8.0.16",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@types/react-beautiful-dnd": "^13.1.8",
"cors": "^2.8.5",
"dexie": "^3.2.4",
"express": "^4.18.2",
"p-queue": "^8.0.1",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.20.1",
"remark-gfm": "^4.0.0",
"rss-parser": "^3.13.0",
"turndown": "^7.2.0"
},
"devDependencies": {
"@eslint/js": "^8.57.1",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.1",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/turndown": "^5.0.5",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"fake-indexeddb": "^6.2.5",
"globals": "^15.15.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"typescript": "^5.2.2",
"typescript-eslint": "^7.18.0",
"vite": "^5.0.0",
"vitest": "^2.1.9"
}
}