Files
tasknote/client/package.json
T

92 lines
2.5 KiB
JSON
Raw Normal View History

2022-09-28 15:12:02 -03:00
{
"name": "task-note",
2024-08-22 15:33:26 -03:00
"version": "1.0.0",
"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"
],
"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-02-05 13:05:03 -03:00
"@types/node": "^25.2.1",
2025-12-15 16:50:13 -03:00
"@types/react-dom": "^19.2.3",
2026-02-05 13:05:03 -03:00
"@vitejs/plugin-react": "^5.1.3",
"bootstrap": "^5.3.8",
2025-12-15 16:50:13 -03:00
"dompurify": "^3.3.1",
2026-02-05 13:05:03 -03:00
"i18next": "^25.8.4",
"react": "^19.2.4",
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",
2026-02-05 13:05:03 -03:00
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4",
2025-03-09 14:39:31 -07:00
"react-markdown": "^10.1.0",
2026-02-05 13:05:03 -03:00
"react-router": "^7.13.0",
2024-08-25 19:30:13 -03:00
"react-router-bootstrap": "^0.26.3",
"remark-gfm": "^4.0.1",
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",
"test": "vitest",
2026-02-10 17:01:03 -03:00
"test:no-watch": "vitest --watch=false",
2024-08-24 16:56:40 -03:00
"test:coverage": "vitest run --coverage --watch=false",
"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-02-05 13:05:03 -03:00
"@eslint/compat": "^2.0.2",
2025-12-15 16:50:13 -03:00
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
2026-02-05 13:05:03 -03:00
"@stylistic/eslint-plugin": "^5.7.1",
2025-10-13 20:13:33 +00:00
"@testing-library/jest-dom": "^6.9.1",
2026-02-05 13:05:03 -03:00
"@testing-library/react": "^16.3.2",
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-02-05 13:05:03 -03:00
"@types/react": "^19.2.13",
2025-05-24 15:07:26 -03:00
"@types/react-router-bootstrap": "^0.26.8",
2026-02-05 13:05:03 -03:00
"@vitest/coverage-v8": "^4.0.18",
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-02-05 13:05:03 -03:00
"eslint-plugin-jsdoc": "^62.5.2",
2026-01-14 16:12:15 -03:00
"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-02-05 13:05:03 -03:00
"globals": "^17.3.0",
"jsdom": "^28.0.0",
"prettier": "^3.8.1",
"sass": "^1.97.3",
2024-08-24 16:56:40 -03:00
"source-map-support": "^0.5.21",
2026-02-05 13:05:03 -03:00
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
2022-09-28 15:12:02 -03:00
}
}