-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "free-web-feed",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"npm": "please-use-yarn"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"lint": "oxlint --deny-warnings",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug"
},
"dependencies": {
"@tanstack/react-query": "^5.90.21",
"favecon": "^1.0.2",
"idb": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rss-parser": "^3.12.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tanstack/react-query-devtools": "^5.91.3",
"@types/node": "^18.8.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.14",
"oxlint": "^0.15.7",
"postcss-nested": "^6.0.0",
"postcss-sorting": "^8.0.1",
"prettier": "^3.4.2",
"typescript": "^5.0.0",
"vite": "^5.0.0"
},
"packageManager": "yarn@4.9.1"
}