tududi/package.json
Chris bd6d176666
Add sorting projects (#175)
* Add sorting dropdown to projects list

* Fix lint issues

* fixup! Fix lint issues

* Fix new task space and completed expose

* Fix completed switch and filters

* Fix an issue with projects not appearing as links

* Fix an issue with modal appearing relative to task list

* Remove obsolete loads

* Fix list issues

* Fix mobile/desktop settings dropdown functionality

* Update project modal layout

* Realign project options

* Fix tags dropdown in Project modal

* Fix inbox amount sidebar layout

* Fix project banner tags listing

* Remove icons from titles

* Fix lint errors

* fixup! Fix lint errors

* fixup! fixup! Fix lint errors

* Beautify notes and areas

* Experiment with new notes layout

* fixup! Experiment with new notes layout

* fixup! fixup! Experiment with new notes layout

* Fix note layout

* fixup! Fix note layout

* Fix an issue with adding an area and refreshing
the area list

* Fix an issue with project edit delete menu

* fixup! Fix an issue with project edit delete menu

* Fix an issue with projects create

* Update interaction with Notes

* Update interaction with tags

* fixup! Update interaction with tags

* Fix lint issues

* Extract shared filter

* Add sorting dropdown translations

* fixup! Add sorting dropdown translations

* fixup! fixup! Add sorting dropdown translations
2025-07-21 18:41:11 +03:00

146 lines
5.9 KiB
JSON

{
"name": "tududi",
"version": "v0.72.2",
"description": "Self-hosted task management with hierarchical organization (Areas > Projects > Tasks), multi-language support, and Telegram integration. Built with React/TypeScript frontend and functional programming Express.js backend.",
"main": "backend/app.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "npm run backend:start",
"dev": "npm run frontend:dev",
"build": "npm run frontend:build",
"test": "npm run backend:test",
"test:watch": "npm run frontend:test:watch",
"test:coverage": "npm run frontend:test:coverage && npm run backend:test:coverage",
"frontend:dev": "webpack serve --config webpack.config.js --hot",
"frontend:start": "tsc --noEmit && webpack serve --config webpack.config.js",
"frontend:build": "npm run clean && tsc --noEmit && webpack --config webpack.config.js",
"frontend:test": "jest",
"frontend:test:watch": "jest --watch",
"frontend:test:coverage": "jest --coverage",
"frontend:lint": "eslint 'frontend/**/*.{js,jsx,ts,tsx}'",
"frontend:lint-fix": "eslint --fix 'frontend/**/*.{js,jsx,ts,tsx}'",
"frontend:format": "prettier --write 'frontend/**/*.{js,jsx,ts,tsx}'",
"backend:start": "cd backend && ./cmd/start.sh",
"backend:dev": "cd backend && nodemon app.js",
"backend:test": "cd backend && cross-env NODE_ENV=test jest",
"backend:test:watch": "cd backend && cross-env NODE_ENV=test jest --watch",
"backend:test:coverage": "cd backend && cross-env NODE_ENV=test jest --coverage",
"backend:test:unit": "cd backend && cross-env NODE_ENV=test jest tests/unit",
"backend:test:integration": "cd backend && cross-env NODE_ENV=test jest tests/integration",
"backend:lint": "cd backend && eslint .",
"backend:lint-fix": "cd backend && eslint . --fix",
"backend:format": "cd backend && prettier --write .",
"db:init": "cd backend && node scripts/db-init.js",
"db:sync": "cd backend && node scripts/db-sync.js",
"db:migrate": "cd backend && node scripts/db-migrate.js",
"db:reset": "cd backend && node scripts/db-reset.js",
"db:status": "cd backend && node scripts/db-status.js",
"db:seed": "cd backend && node scripts/seed-dev-data.js",
"user:create": "cd backend && node scripts/user-create.js",
"migration:create": "cd backend && node scripts/migration-create.js",
"migration:run": "cd backend && npx sequelize-cli db:migrate",
"migration:undo": "cd backend && npx sequelize-cli db:migrate:undo",
"migration:undo:all": "cd backend && npx sequelize-cli db:migrate:undo:all",
"migration:status": "cd backend && npx sequelize-cli db:migrate:status",
"translations:sync": "cd scripts && ./sync-translations.js",
"translations:sync-all": "cd scripts && ./sync-translations.js --all",
"translations:dry-run": "cd scripts && ./sync-translations.js --all --dry-run",
"translations:check": "cd scripts && ./sync-translations.js --all --dry-run --verbose",
"translations:export": "cd scripts && ./sync-translations.js --all --dry-run --output missing-translations.json",
"clean": "rimraf dist",
"lint": "npm run frontend:lint && npm run backend:lint",
"lint-fix": "npm run frontend:lint-fix && npm run backend:lint-fix",
"format": "npm run frontend:format && npm run backend:format",
"docker:test-build": "bash scripts/test-docker-build.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-react": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.0.0",
"babel-loader": "^9.2.1",
"cross-env": "~7.0.3",
"css-loader": "^7.1.2",
"eslint": "^8.0.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.1",
"globals": "^15.11.0",
"html-webpack-plugin": "^5.6.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"nodemon": "~3.0.1",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"react-refresh": "^0.14.2",
"rimraf": "^6.0.1",
"sequelize-cli": "~6.6.2",
"style-loader": "^4.0.0",
"supertest": "~7.1.1",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@yaireo/tagify": "^4.31.3",
"bcrypt": "~6.0.0",
"compression": "~1.8.0",
"compromise": "^14.14.4",
"connect-session-sequelize": "~7.1.7",
"cors": "~2.8.5",
"date-fns": "^4.1.0",
"dotenv": "~16.5.0",
"eslint-plugin-react": "^7.37.5",
"express": "^4.21.2",
"express-session": "~1.18.1",
"googleapis": "~144.0.0",
"helmet": "~8.1.0",
"highlight.js": "^11.11.1",
"i18next": "^24.2.3",
"i18next-browser-languagedetector": "^8.0.4",
"i18next-http-backend": "^3.0.2",
"js-yaml": "~4.1.0",
"moment-timezone": "~0.6.0",
"morgan": "~1.10.0",
"multer": "~2.0.1",
"node-cron": "~4.1.0",
"prettier": "^3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.4.1",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.26.2",
"react-tagify": "^1.0.7",
"recharts": "^2.15.4",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"sequelize": "~6.37.7",
"sqlite3": "~5.1.7",
"swr": "^2.2.5",
"tagify": "^0.1.1",
"typescript-eslint": "^8.36.0",
"uuid": "~11.1.0",
"zustand": "^5.0.3"
}
}