2020-12-24 02:37:23 +03:30
|
|
|
{
|
|
|
|
|
"name": "project",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
2023-03-11 18:05:58 +01:00
|
|
|
"scripts": {
|
|
|
|
|
"start": "react-scripts start",
|
|
|
|
|
"build": "react-scripts build",
|
|
|
|
|
"build-md5": "find build -type f | sort | xargs md5sum | awk '{ print $1 }' | tr -d '\n' | md5sum| awk '{ print $1 }' > buildZip/md5sum ",
|
|
|
|
|
"build-zip": "cd build && rev=$(git rev-list HEAD --count) && echo r$rev > revision && zip -9 -r ../buildZip/Tachidesk-WebUI-r$rev *",
|
|
|
|
|
"test": "react-scripts test",
|
|
|
|
|
"eject": "react-scripts eject",
|
|
|
|
|
"lint": "eslint src --ext .ts,.tsx,.js,.jsx"
|
|
|
|
|
},
|
|
|
|
|
"browserslist": {
|
|
|
|
|
"production": [
|
|
|
|
|
">0.2%",
|
|
|
|
|
"not dead",
|
|
|
|
|
"not op_mini all"
|
|
|
|
|
],
|
|
|
|
|
"development": [
|
|
|
|
|
"last 1 chrome version",
|
|
|
|
|
"last 1 firefox version",
|
|
|
|
|
"last 1 safari version"
|
|
|
|
|
]
|
|
|
|
|
},
|
2020-12-24 02:37:23 +03:30
|
|
|
"dependencies": {
|
2021-09-09 17:51:22 +04:30
|
|
|
"@emotion/react": "^11.4.1",
|
|
|
|
|
"@emotion/styled": "^11.3.0",
|
2021-05-13 15:01:37 +04:30
|
|
|
"@fontsource/roboto": "^4.3.0",
|
2021-10-29 17:51:43 +05:30
|
|
|
"@mui/icons-material": "^5.0.5",
|
|
|
|
|
"@mui/lab": "^5.0.0-alpha.53",
|
|
|
|
|
"@mui/material": "^5.0.6",
|
|
|
|
|
"@mui/styles": "^5.0.2",
|
|
|
|
|
"@mui/system": "^5.0.6",
|
2021-03-07 16:27:13 +03:30
|
|
|
"axios": "^0.21.1",
|
2021-04-10 00:44:13 +04:30
|
|
|
"file-selector": "^0.2.4",
|
2023-02-13 20:20:08 +03:30
|
|
|
"i18next": "^22.4.9",
|
|
|
|
|
"i18next-browser-languagedetector": "^7.0.1",
|
2022-03-12 04:46:55 +00:00
|
|
|
"p-queue": "^7.2.0",
|
2021-10-29 20:11:23 +02:00
|
|
|
"query-string": "^7.0.1",
|
2021-05-13 15:01:37 +04:30
|
|
|
"react": "^17.0.2",
|
2021-02-20 01:23:52 +03:30
|
|
|
"react-beautiful-dnd": "^13.0.0",
|
2021-05-13 15:01:37 +04:30
|
|
|
"react-dom": "^17.0.2",
|
2023-02-13 20:20:08 +03:30
|
|
|
"react-i18next": "^12.1.5",
|
2021-03-18 21:46:24 +03:30
|
|
|
"react-lazyload": "^3.2.0",
|
2020-12-24 03:21:18 +03:30
|
|
|
"react-router-dom": "^5.2.0",
|
2023-03-11 18:05:58 +01:00
|
|
|
"react-scripts": "^5.0.1",
|
2021-05-13 17:46:40 +04:30
|
|
|
"react-virtuoso": "^1.8.6",
|
2023-05-15 11:56:55 +02:00
|
|
|
"swr": "^2.1.5",
|
2021-10-29 20:11:23 +02:00
|
|
|
"use-query-params": "^1.2.3",
|
2021-09-09 17:05:07 +04:30
|
|
|
"web-vitals": "^2.1.0"
|
2020-12-24 02:37:23 +03:30
|
|
|
},
|
2020-12-24 16:49:43 +03:30
|
|
|
"devDependencies": {
|
2021-05-13 15:01:37 +04:30
|
|
|
"@types/react": "^17.0.2",
|
2021-05-30 04:01:49 +04:30
|
|
|
"@types/react-beautiful-dnd": "^13.0.0",
|
2021-05-13 15:01:37 +04:30
|
|
|
"@types/react-dom": "^17.0.2",
|
|
|
|
|
"@types/react-lazyload": "^3.1.0",
|
|
|
|
|
"@types/react-router-dom": "^5.1.7",
|
2023-03-11 18:05:58 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.54.0",
|
|
|
|
|
"eslint": "^8.35.0",
|
|
|
|
|
"eslint-config-airbnb": "^19.0.4",
|
|
|
|
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
2023-02-06 10:06:33 +01:00
|
|
|
"eslint-config-prettier": "^8.6.0",
|
2023-05-18 13:17:41 +02:00
|
|
|
"eslint-plugin-header": "^3.1.1",
|
2023-03-11 18:05:58 +01:00
|
|
|
"eslint-plugin-import": "^2.27.5",
|
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
2023-02-05 16:15:20 +01:00
|
|
|
"eslint-plugin-no-relative-import-paths": "^1.5.2",
|
2023-02-06 10:06:33 +01:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2023-03-11 18:05:58 +01:00
|
|
|
"eslint-plugin-react": "^7.32.2",
|
|
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2023-02-06 10:06:33 +01:00
|
|
|
"prettier": "^2.8.2",
|
2022-11-06 21:13:09 +01:00
|
|
|
"typescript": "^4.8.4"
|
2020-12-24 02:37:23 +03:30
|
|
|
}
|
2021-01-21 15:04:11 +03:30
|
|
|
}
|