Skip to content

Commit

Permalink
Merge pull request #1395 from crupest/dev
Browse files Browse the repository at this point in the history
Refector 2023 v0.1
  • Loading branch information
crupest committed Sep 20, 2023
2 parents b006d65 + d7abaf8 commit 6fe4b42
Show file tree
Hide file tree
Showing 245 changed files with 8,531 additions and 7,448 deletions.
30 changes: 16 additions & 14 deletions FrontEnd/.editorconfig
@@ -1,14 +1,16 @@
root = true
end_of_line = lf

[*.ts]
tab_width = 2

[*.tsx]
tab_width = 2

[*.css]
tab_width = 2

[*.sass]
tab_width = 2
root = true
end_of_line = lf
indent_style = space

[*.ts]
indent_size = 2

[*.tsx]
indent_size = 2

[*.css]
indent_size = 2

[*.sass]
indent_size = 2

1 change: 1 addition & 0 deletions FrontEnd/.eslintignore
@@ -1 +1,2 @@
dist
src/migrating
2 changes: 1 addition & 1 deletion FrontEnd/.eslintrc.cjs → FrontEnd/.eslintrc.js
Expand Up @@ -13,7 +13,7 @@ module.exports = {
plugins: ["@typescript-eslint", "prettier", "react", "react-hooks"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
project: ["./tsconfig.json", "tools/tsconfig.json"],
tsconfigRootDir: __dirname
},
settings: {
Expand Down
3 changes: 2 additions & 1 deletion FrontEnd/cspell.json
Expand Up @@ -7,6 +7,7 @@
"words": [
"languagedetector",
"popperjs",
"signalr"
"signalr",
"webp"
]
}
63 changes: 30 additions & 33 deletions FrontEnd/package.json
@@ -1,11 +1,9 @@
{
"name": "timeline",
"version": "0.4.0",
"private": true,
"type": "module",
"source": "index.html",
"scripts": {
"start": "parcel --port 5678",
"start": "parcel --port 5678 --hmr-port 6789",
"build": "tsc && parcel build",
"type-check": "tsc",
"lint": "eslint src/ --ext .js --ext .jsx --ext .ts --ext .tsx",
Expand All @@ -14,57 +12,56 @@
"check:fix": "pnpm run type-check && pnpm run lint:fix"
},
"dependencies": {
"@microsoft/signalr": "^7.0.7",
"@popperjs/core": "^2.11.8",
"axios": "^1.4.0",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.10.5",
"@floating-ui/react-dom": "^2.0.2",
"@microsoft/signalr": "^7.0.11",
"axios": "^1.5.0",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.1",
"classnames": "^2.3.2",
"color": "^4.2.3",
"core-js": "^3.31.1",
"i18next": "^23.2.8",
"core-js": "^3.32.2",
"i18next": "^23.5.1",
"i18next-browser-languagedetector": "^7.1.0",
"js-base64": "^3.7.5",
"lodash": "^4.17.21",
"marked": "^5.1.1",
"marked": "^9.0.3",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.1",
"react-i18next": "^13.2.2",
"react-popper": "^2.3.0",
"react-responsive": "^9.0.2",
"react-router-dom": "^6.14.1",
"react-router-dom": "^6.16.0",
"react-transition-group": "^4.4.5",
"regenerator-runtime": "^0.13.11",
"rxjs": "^7.8.1",
"xregexp": "^5.1.1"
},
"devDependencies": {
"@parcel/packager-raw-url": "2.9.3",
"@parcel/transformer-webmanifest": "2.9.3",
"@tsconfig/vite-react": "^2.0.0",
"@types/color": "^3.0.3",
"@types/lodash": "^4.14.195",
"@types/marked": "^5.0.0",
"@types/node": "^20.4.1",
"@tsconfig/node20": "^20.1.2",
"@types/color": "^3.0.4",
"@types/lodash": "^4.14.198",
"@types/marked": "^5.0.1",
"@types/node": "^20.6.3",
"@types/parcel-env": "^0.0.1",
"@types/react": "^18.2.14",
"@types/react": "^18.2.22",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^18.2.6",
"@types/react-dom": "^18.2.7",
"@types/react-responsive": "^8.0.5",
"@types/react-transition-group": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"buffer": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"buffer": "^6.0.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"parcel": "latest",
"prettier": "^3.0.0",
"parcel": "^2.9.3",
"prettier": "^3.0.3",
"process": "^0.11.10",
"typescript": "^5.1.6"
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-language-server": "^3.3.2"
}
}

0 comments on commit 6fe4b42

Please sign in to comment.