* fix: improve application properties and enable more logs * chore: fix application properties * test: fix test cases * ci: fix sonarloud project key for the backend * chore: add variable to manage root logging level * chore: debug log mode * feat: fix healthcheck for tasknote api * feat: fix dockerfile for client - finally Issue #308 * chore: bump some versions closes #311 closes #312 closes #313 closes #314 closes #315 closes #317 closes #318 * test: add backend test case chore: fix note type error on frontend * test: add test case
87 lines
2.3 KiB
JSON
87 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",
|
|
"@types/node": "^22.13.8",
|
|
"@types/react-dom": "^19.0.4",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"bootstrap": "^5.3.3",
|
|
"i18next": "^24.2.2",
|
|
"react": "^19.0.0",
|
|
"react-bootstrap": "^2.10.9",
|
|
"react-bootstrap-icons": "^1.11.5",
|
|
"react-charts": "^3.0.0-beta.57",
|
|
"react-dom": "^19.0.0",
|
|
"react-i18next": "^15.4.0",
|
|
"react-router": "^7.2.0",
|
|
"react-router-bootstrap": "^0.26.3",
|
|
"typescript": "^5.7.3",
|
|
"vite": "^6.2.0"
|
|
},
|
|
"scripts": {
|
|
"start": "vite --host",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite build && vite preview",
|
|
"test": "vitest",
|
|
"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.7",
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
"@eslint/js": "^9.21.0",
|
|
"@stylistic/eslint-plugin": "^3.0.1",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.2.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/react": "^19.0.3",
|
|
"@types/react-router-bootstrap": "^0.26.6",
|
|
"@vitest/coverage-v8": "^3.0.7",
|
|
"eslint": "^9.17.0",
|
|
"eslint-config-prettier": "^10.0.1",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-jsdoc": "^50.6.3",
|
|
"eslint-plugin-n": "^17.15.1",
|
|
"eslint-plugin-promise": "^7.2.1",
|
|
"eslint-plugin-react": "^7.37.4",
|
|
"globals": "^15.14.0",
|
|
"jsdom": "^26.0.0",
|
|
"prettier": "^3.5.2",
|
|
"sass": "^1.83.4",
|
|
"source-map-support": "^0.5.21",
|
|
"typescript-eslint": "^8.25.0",
|
|
"vitest": "^3.0.7"
|
|
}
|
|
}
|