-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
111 lines (111 loc) · 3.31 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
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
103
104
105
106
107
108
109
110
111
{
"name": "rclone-drive-webui",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"scripts": {
"clean": "rm -rf ./node_modules && rm -rf ./build",
"prepare": "husky",
"start-dev": "GENERATE_SOURCEMAP=false react-scripts start",
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"lint": "eslint 'src/**/*.js' && stylelint 'src/**/*.scss' && prettier --check .",
"lint:fix": "eslint --fix 'src/**/*.js' && stylelint --fix 'src/**/*.scss' && prettier --write .",
"test": "react-scripts test --watchAll=false --coverage"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.1",
"@mui/lab": "^6.0.0-beta.10",
"@mui/material": "^6.1.1",
"@mui/x-tree-view": "^7.18.0",
"axios": "^1.7.7",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"lru-cache": "^11.0.1",
"notistack": "^3.0.1",
"pretty-bytes": "^6.1.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-file-viewer": "^1.2.1",
"react-intersection-observer": "^9.13.1",
"react-pdf": "^9.1.1",
"react-router-dom": "^6.26.2",
"react-scripts": "^5.0.1",
"react-virtualized": "^9.22.5",
"react-virtualized-auto-sizer": "^1.0.24",
"react-window": "^1.8.10",
"rxjs": "^7.8.1",
"sass": "^1.79.5",
"uuid": "^10.0.0",
"web-vitals": "^4.2.3",
"yarn": "^1.22.22"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.25.7",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"babel-preset-react-app": "^10.0.1",
"blob-polyfill": "^9.0.20240710",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/src/index.js",
"<rootDir>/src/reportWebVitals.js"
],
"coverageReporters": [
"text",
"html",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 98,
"functions": 98,
"lines": 98,
"statements": 98
}
},
"transformIgnorePatterns": [
"/node_modules/(?!axios|pretty-bytes)"
],
"transform": {
"^.+\\.(js|jsx|mjs|cjs|ts|tsx)$": "<rootDir>/jest-transformer.js"
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}