forked from std4453/mikanarr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "mikanarr",
"version": "1.0.0",
"private": "true",
"description": "Mikanarr, bridge between Mikan Anime and Sonarr",
"main": "server/index.js",
"scripts": {
"start": "dotenv node server/index.js",
"dev": "run-p dev:server dev:web",
"dev:server": "dotenv -- nodemon --signal SIGINT --watch server server/index.js",
"dev:web": "dotenv -- react-scripts start",
"build": "npm-run-all build:*",
"build:web": "react-scripts build",
"build:server": "pkg -t linux,alpine server/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/material": "^5.2.7",
"@mui/styles": "^5.2.3",
"axios": "^0.24.0",
"clsx": "^1.1.1",
"dotenv-cli": "^4.0.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"global-agent": "^3.0.0",
"http-proxy-middleware": "^2.0.1",
"json-server": "^0.17.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"lowdb": "^1.0.0",
"qs": "^6.10.1",
"ra-data-json-server": "^3.14.4",
"react": "^17.0.2",
"react-admin": "^3.14.4",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.3",
"react-hook-form": "^7.2.1",
"store": "^2.0.12",
"swr": "^1.0.1",
"use-clipboard-copy": "^0.2.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"react-scripts": "^5.0.0",
"pkg": "^5.5.1"
},
"resolutions": {
"react-admin/@material-ui/core": "^4.12.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:12306"
}