forked from cofeed-19/cofeed-19.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 856 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 856 Bytes
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
{
"name": "free-web-feed",
"version": "0.1.0",
"private": true,
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.17"
},
"scripts": {
"dev": "next dev -p 4605",
"build": "next build",
"export": "next export",
"start": "next start",
"format": "prettier --write .",
"lint": "oxlint --deny-warnings"
},
"dependencies": {
"favecon": "^1.0.2",
"next": "^13.1.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rss-parser": "^3.12.0"
},
"devDependencies": {
"@types/node": "^18.8.3",
"@types/react": "^17.0.3",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.14",
"eslint": "8.12.0",
"eslint-config-next": "12.1.1",
"oxlint": "^0.15.7",
"postcss-nested": "^6.0.0",
"postcss-sorting": "^8.0.1",
"prettier": "^3.4.2",
"typescript": "^4.8.3"
}
}