* build(deps): bump vite from 6.0.9 to 6.0.11 in /client Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.0.9 to 6.0.11. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v6.0.11/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * build(deps-dev): bump @types/node from 22.10.10 to 22.13.1 in /client Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 22.10.10 to 22.13.1. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * build(deps-dev): bump sass from 1.83.0 to 1.83.4 in /client Bumps [sass](https://github.com/sass/dart-sass) from 1.83.0 to 1.83.4. - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.83.0...1.83.4) --- updated-dependencies: - dependency-name: sass dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * build(deps-dev): bump @stylistic/eslint-plugin in /client Bumps [@stylistic/eslint-plugin](https://github.com/eslint-stylistic/eslint-stylistic/tree/HEAD/packages/eslint-plugin) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/eslint-stylistic/eslint-stylistic/releases) - [Changelog](https://github.com/eslint-stylistic/eslint-stylistic/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint-stylistic/eslint-stylistic/commits/v3.0.1/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@stylistic/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * build(deps-dev): bump @eslint/compat from 1.2.5 to 1.2.6 in /client Bumps [@eslint/compat](https://github.com/eslint/rewrite) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/eslint/rewrite/releases) - [Changelog](https://github.com/eslint/rewrite/blob/main/release-please-config.json) - [Commits](https://github.com/eslint/rewrite/compare/compat-v1.2.5...compat-v1.2.6) --- updated-dependencies: - dependency-name: "@eslint/compat" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * fix: upgrade typescript from 5.7.2 to 5.7.3 Snyk has created this PR to upgrade typescript from 5.7.2 to 5.7.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/ricardocampos-dcn/project/4d31651d-a849-4b8a-83a3-f8aaba677c53?utm_source=github&utm_medium=referral&page=upgrade-pr --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io>
86 lines
2.3 KiB
JSON
86 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/react-dom": "^19.0.3",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"bootstrap": "^5.3.3",
|
|
"i18next": "^24.2.2",
|
|
"react": "^19.0.0",
|
|
"react-bootstrap": "^2.10.7",
|
|
"react-bootstrap-icons": "^1.11.5",
|
|
"react-dom": "^19.0.0",
|
|
"react-i18next": "^15.4.0",
|
|
"react-router": "^7.1.1",
|
|
"react-router-bootstrap": "^0.26.3",
|
|
"typescript": "^5.7.3",
|
|
"vite": "^6.0.11"
|
|
},
|
|
"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.6",
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
"@eslint/js": "^9.17.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/node": "^22.13.1",
|
|
"@types/react": "^19.0.3",
|
|
"@types/react-router-bootstrap": "^0.26.6",
|
|
"@vitest/coverage-v8": "^3.0.4",
|
|
"eslint": "^9.17.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-jsdoc": "^50.6.1",
|
|
"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.4.2",
|
|
"sass": "^1.83.4",
|
|
"source-map-support": "^0.5.21",
|
|
"typescript-eslint": "^8.19.1",
|
|
"vitest": "^3.0.4"
|
|
}
|
|
}
|