* feat: add languages - wip issue #90 based on article https://dev.to/franklin030601/building-a-multi-language-app-with-react-js-2och * feat: translate landing, login and register pages issue #90 * feat: translate all the external texts and messages issue #90 * feat: add new automations scripts and remove old ones * feat: add server build info on actuator health page * feat: language handling for all external pages issue #90 * feat: start translation at the home page - wip issue #90 * feat: improve automation to run services on docker * feat: more automations for the client this time * feat: translate finished for the home page issue #90 * feat: translate about page, header and footer issue #90 * feat: translate task page issue #90 * feat: translate notes issue #90 * feat: increase token expiration to one week * test: fix test cases * ci: remove client docker image from workflow * feat: improve reliability * chore: reduce duplications * feat: fix lint issues thansk to https://dev.to/aolyang/eslint-9-flat-config-tutorial-2bm5 * fix: path when login or register
85 lines
2.3 KiB
JSON
85 lines
2.3 KiB
JSON
{
|
|
"name": "task-note",
|
|
"version": "1.0.0",
|
|
"license": "GPL-3.0-only",
|
|
"description": "TaskNote App - Your daily-basis friend to help you with TODOs and Notes",
|
|
"keywords": [
|
|
"react",
|
|
"typescript",
|
|
"node",
|
|
"nestjs"
|
|
],
|
|
"repository": "https://github.com/ricardo-campos-org/react-typescript-todolist",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@popperjs/core": "^2.11.8",
|
|
"@testing-library/react": "^16.0.1",
|
|
"@testing-library/user-event": "^14.5.2",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^22.7.5",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@types/react-router-bootstrap": "^0.26.6",
|
|
"@vitejs/plugin-react": "^4.3.2",
|
|
"bootstrap": "^5.3.3",
|
|
"i18next": "^23.15.2",
|
|
"react": "^18.3.1",
|
|
"react-bootstrap": "^2.10.5",
|
|
"react-dom": "^18.3.1",
|
|
"react-i18next": "^15.0.2",
|
|
"react-router-bootstrap": "^0.26.3",
|
|
"react-router-dom": "^6.26.2",
|
|
"typescript": "^5.6.2",
|
|
"vite": "^5.4.8"
|
|
},
|
|
"scripts": {
|
|
"start": "vite --host",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite build && vite preview",
|
|
"test": "vitest -u",
|
|
"test:coverage": "vitest run --coverage --watch=false",
|
|
"lint": "./node_modules/.bin/eslint",
|
|
"lint:fix": "./node_modules/.bin/eslint --fix"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/compat": "^1.2.2",
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
"@eslint/js": "^9.13.0",
|
|
"@stylistic/eslint-plugin": "^2.10.1",
|
|
"@testing-library/jest-dom": "^6.6.2",
|
|
"@types/react": "^18.3.11",
|
|
"@vitest/coverage-v8": "^2.1.1",
|
|
"eslint": "^9.13.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-jsdoc": "^50.4.3",
|
|
"eslint-plugin-n": "^17.11.1",
|
|
"eslint-plugin-promise": "^7.1.0",
|
|
"eslint-plugin-react": "^7.37.2",
|
|
"globals": "^15.11.0",
|
|
"jsdom": "^25.0.1",
|
|
"prettier": "^3.3.3",
|
|
"sass": "^1.80.4",
|
|
"source-map-support": "^0.5.21",
|
|
"typescript-eslint": "^8.12.2",
|
|
"vitest": "^2.0.5"
|
|
}
|
|
}
|