forked from std4453/mikanarr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.65 KB
/
package.json
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": "rssarr",
"version": "2.0.0",
"private": "true",
"description": "Rssarr, bridge between Anime RSS and Sonarr",
"type": "module",
"exports": "./server/index.js",
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/Izumiko/rssarr",
"scripts": {
"start": "bun server/index.js",
"dev": "run-p dev:server dev:web",
"dev:server": "bun --watch server/index.js",
"dev:web": "vite",
"build": "npm-run-all build:*",
"build:web": "vite build --outDir dist/public",
"build:server": "bun build server/index.js --target=node --minify --outfile=dist/index.mjs --define \"__dirname=.\" && cp node_modules/errorhandler/public/* dist/public/",
"preview": "vite preview"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.1.6",
"axios": "^1.7.7",
"dotenv-cli": "^7.4.2",
"express": "^4.21.1",
"express-jwt": "^8.4.1",
"global-agent": "^3.0.0",
"http-proxy-middleware": "^3.0.3",
"json-server": "^0.17.4",
"jsonwebtoken": "^9.0.2",
"lowdb": "^1.0.0",
"parse-torrent": "^11.0.17",
"qs": "^6.13.0",
"ra-data-json-server": "^5.3.2",
"react": "^18.3.1",
"react-admin": "^5.3.2",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"swr": "^2.2.5",
"use-clipboard-copy": "^0.2.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.13.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"npm-run-all": "^4.1.5",
"vite": "^5.4.10"
}
}