2022-09-28 15:12:02 -03:00
|
|
|
{
|
2024-10-29 15:55:54 +00:00
|
|
|
"name": "task-note",
|
2024-08-22 15:33:26 -03:00
|
|
|
"version": "1.0.0",
|
2024-08-25 14:56:15 -03:00
|
|
|
"license": "GPL-3.0-only",
|
|
|
|
|
"description": "TaskNote App - Your daily-basis friend to help you with TODOs and Notes",
|
2024-08-25 19:30:13 -03:00
|
|
|
"keywords": [
|
|
|
|
|
"react",
|
|
|
|
|
"typescript",
|
|
|
|
|
"node",
|
|
|
|
|
"nestjs"
|
|
|
|
|
],
|
2024-08-25 14:56:15 -03:00
|
|
|
"repository": "https://github.com/ricardo-campos-org/react-typescript-todolist",
|
2022-09-28 15:12:02 -03:00
|
|
|
"private": true,
|
|
|
|
|
"dependencies": {
|
2024-08-25 19:30:13 -03:00
|
|
|
"@popperjs/core": "^2.11.8",
|
2026-01-14 16:12:15 -03:00
|
|
|
"@types/node": "^25.0.8",
|
2025-12-15 16:50:13 -03:00
|
|
|
"@types/react-dom": "^19.2.3",
|
|
|
|
|
"@vitejs/plugin-react": "^5.1.2",
|
2025-08-31 17:03:47 -03:00
|
|
|
"bootstrap": "^5.3.8",
|
2025-12-15 16:50:13 -03:00
|
|
|
"dompurify": "^3.3.1",
|
2026-01-14 16:12:15 -03:00
|
|
|
"i18next": "^25.7.4",
|
2025-12-15 16:50:13 -03:00
|
|
|
"react": "^19.2.3",
|
2025-05-24 15:07:26 -03:00
|
|
|
"react-bootstrap": "^2.10.10",
|
|
|
|
|
"react-bootstrap-icons": "^1.11.6",
|
2025-02-22 16:29:54 -03:00
|
|
|
"react-charts": "^3.0.0-beta.57",
|
2026-01-14 16:12:15 -03:00
|
|
|
"react-datepicker": "^9.1.0",
|
2025-12-15 16:50:13 -03:00
|
|
|
"react-dom": "^19.2.3",
|
2026-01-14 16:12:15 -03:00
|
|
|
"react-i18next": "^16.5.3",
|
2025-03-09 14:39:31 -07:00
|
|
|
"react-markdown": "^10.1.0",
|
2026-01-14 16:12:15 -03:00
|
|
|
"react-router": "^7.12.0",
|
2024-08-25 19:30:13 -03:00
|
|
|
"react-router-bootstrap": "^0.26.3",
|
2025-10-13 20:13:33 +00:00
|
|
|
"typescript": "^5.9.3",
|
2026-01-14 16:12:15 -03:00
|
|
|
"vite": "^7.3.1"
|
2022-09-28 15:12:02 -03:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2024-08-24 16:56:40 -03:00
|
|
|
"start": "vite --host",
|
|
|
|
|
"build": "tsc && vite build",
|
|
|
|
|
"preview": "vite build && vite preview",
|
2024-11-22 11:42:00 -03:00
|
|
|
"test": "vitest",
|
2024-08-24 16:56:40 -03:00
|
|
|
"test:coverage": "vitest run --coverage --watch=false",
|
2024-10-29 15:55:54 +00:00
|
|
|
"lint": "./node_modules/.bin/eslint",
|
|
|
|
|
"lint:fix": "./node_modules/.bin/eslint --fix"
|
2022-09-28 15:12:02 -03:00
|
|
|
},
|
|
|
|
|
"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"
|
|
|
|
|
]
|
2024-08-24 16:56:40 -03:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-01-14 16:12:15 -03:00
|
|
|
"@eslint/compat": "^2.0.1",
|
2025-12-15 16:50:13 -03:00
|
|
|
"@eslint/eslintrc": "^3.3.3",
|
|
|
|
|
"@eslint/js": "^9.39.2",
|
2026-01-14 16:12:15 -03:00
|
|
|
"@stylistic/eslint-plugin": "^5.7.0",
|
2025-10-13 20:13:33 +00:00
|
|
|
"@testing-library/jest-dom": "^6.9.1",
|
2025-12-15 16:50:13 -03:00
|
|
|
"@testing-library/react": "^16.3.1",
|
2025-01-21 18:02:44 -03:00
|
|
|
"@testing-library/user-event": "^14.6.1",
|
2025-06-25 10:02:23 -03:00
|
|
|
"@types/jest": "^30.0.0",
|
2026-01-14 16:12:15 -03:00
|
|
|
"@types/react": "^19.2.8",
|
2025-05-24 15:07:26 -03:00
|
|
|
"@types/react-router-bootstrap": "^0.26.8",
|
2026-01-14 16:12:15 -03:00
|
|
|
"@vitest/coverage-v8": "^4.0.17",
|
2025-12-15 16:50:13 -03:00
|
|
|
"eslint": "^9.39.2",
|
2025-08-01 10:42:59 -03:00
|
|
|
"eslint-config-prettier": "^10.1.8",
|
2025-08-20 13:59:28 -03:00
|
|
|
"eslint-plugin-import": "^2.32.0",
|
2026-01-14 16:12:15 -03:00
|
|
|
"eslint-plugin-jsdoc": "^62.0.0",
|
|
|
|
|
"eslint-plugin-n": "^17.23.2",
|
2024-12-05 21:17:35 -03:00
|
|
|
"eslint-plugin-promise": "^7.2.1",
|
2025-05-24 15:07:26 -03:00
|
|
|
"eslint-plugin-react": "^7.37.5",
|
2026-01-14 16:12:15 -03:00
|
|
|
"globals": "^17.0.0",
|
|
|
|
|
"jsdom": "^27.4.0",
|
2025-12-15 16:50:13 -03:00
|
|
|
"prettier": "^3.7.4",
|
2026-01-14 16:12:15 -03:00
|
|
|
"sass": "^1.97.2",
|
2024-08-24 16:56:40 -03:00
|
|
|
"source-map-support": "^0.5.21",
|
2026-01-14 16:12:15 -03:00
|
|
|
"typescript-eslint": "^8.53.0",
|
|
|
|
|
"vitest": "^4.0.17"
|
2022-09-28 15:12:02 -03:00
|
|
|
}
|
|
|
|
|
}
|