-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "rasagi",
"description": "A simple and private remote rss aggregator.",
"license": "AGPL-3.0-or-later",
"author": "Firstbober <firstbober@tutanota.com>",
"scripts": {
"dev:app": "next dev",
"dev:daemon": "wait-on .next/server/daemon.js && nodemon .next/server/daemon.js -w src/server",
"dev": "npm-run-all -p dev:daemon dev:app",
"build": "next build",
"start:app": "next start",
"start:daemon": "node .next/server/daemon.js",
"start": "npm-run-all -p start:daemon start:app",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/lab": "^5.0.0-alpha.65",
"@mui/material": "^5.2.8",
"@prisma/client": "^3.9.1",
"@reduxjs/toolkit": "^1.7.1",
"axios": "^0.25.0",
"cheerio": "^1.0.0-rc.10",
"crypto-random-string": "^4.0.0",
"dayjs": "^1.10.7",
"fast-xml-parser": "^4.2.4",
"next": "^12.0.8",
"node-html-parser": "^5.2.0",
"node-ipc": "^10.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6",
"swr": "^1.2.1"
},
"devDependencies": {
"@types/node": "17.0.8",
"@types/node-ipc": "^9.2.0",
"@types/react": "17.0.38",
"eslint": "8.6.0",
"eslint-config-next": "^0.2.4",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prisma": "^3.9.1",
"typescript": "4.5.4",
"wait-on": "^6.0.0"
}
}