-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.79 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@rclone/rclone-webui-react",
"version": "1.0.6",
"description": "A web interface for r-clone",
"author": "Smart In Venture / Speedbits",
"copyright": "Copyright (c) 2025 Smart In Venture",
"license": "COMMERCIAL",
"private": true,
"homepage": "./",
"proxy": "http://localhost:5573",
"repository": {
"type": "git",
"url": "git@github.com:negative0/rclone-webui-react.git"
},
"dependencies": {
"@coreui/coreui": "^2.1.16",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "^1.3.1",
"@coreui/icons": "0.3.0",
"@coreui/react": "^2.5.7",
"ajv": "^8.17.1",
"axios": "^1.7.7",
"bootstrap": "^4.6.2",
"chart.js": "^2.9.4",
"classnames": "^2.5.1",
"core-js": "^3.38.1",
"flag-icon-css": "^4.1.7",
"font-awesome": "^4.7.0",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"rclone-api": "^1.0.10",
"react": "^18.3.1",
"react-autosuggest": "^10.1.0",
"react-awesome-player": "^1.1.0",
"react-chartjs-2": "^2.11.2",
"react-dnd": "^14.0.5",
"react-dnd-html5-backend": "^14.1.0",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"react-toastify": "^10.0.5",
"reactstrap": "^8.10.1",
"redux": "^5.0.1",
"redux-thunk": "^3.1.0",
"reselect": "^5.1.1",
"sass": "^1.79.4",
"simple-line-icons": "^2.5.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"check-prop-types": "^1.1.2",
"coveralls": "^3.1.1",
"fetch-mock": "^11.1.5",
"http-proxy-middleware": "^3.0.5",
"react-dnd-test-backend": "^16.0.1",
"react-scripts": "^5.0.1",
"redux-mock-store": "^1.5.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:cov": "react-scripts test --coverage",
"test:debug": "react-scripts --inspect-brk test --runInBand",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"eject": "react-scripts eject"
},
"bugs": {
"url": "https://github.com/negative0/rclone-webui-react/issues"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"src/**/**/.{js,jsx}",
"!**/node_modules/**",
"!**/*index.js",
"!src/serviceWorker.js",
"!src/polyfill.js"
]
},
"overrides": {
"postcss": "^8.4.31"
}
}