mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-31 12:28:50 +08:00
* wip * wip frontend * cleanup * wip * refactoring * wip * first working version * wip * update calendar with new result * add migration script * dates are hard * fix naming inconsistencies * requested changes on migration * timezones * update date-fns, use date-fns/utc * resolve cyclic dependency by extracting test activity calender into new file * cleanup * fix increment * fix * tests * test coverage * test migration * migration more logging * migration add unique index on uid if missing * update legend styling * 53 columns * wip * move dropdown and legend to the top add dropdown border yeet hotpink invisible filler boxes remove year from month format * responsive update * lowercase months * handle current year, fix tests * handle year change * make days square again * handle newly created users correctly * move css * add wrapper for easier styling rework some font sizes/widths reorder styles * media queries * align * rework styling once more * dont commit debug * add days full to fill the space a bit * show partial months * hover on 0 tests * start dynamic calendar on sunday * no activity * hover * remove label on fillers * remove label on fillers * fix months, update tests for months * adjust tests to new requirements * cleanup * fix migration * impr(commandline): add "add/remove quote to favorites" commands closes #5368 * chore: remove daily lb which is no longer in the backend * fix: dropdown element flashing for couple frames on page load * feat(language): add japanese romaji 1k (nthngnssmnnglss) * fix: optional chaining !nuf * fix(words generator): infinite custom text tests not working correctly * chore: missing languages in list and group files * fix(language): remove duplicates !nuf * add readline sync to confirm * gh action complaints * unnecessary check * premium only * add years to drop down only if premium * Update setup-tests.ts * test fix * cleanup --------- Co-authored-by: Miodec <jack@monkeytype.com>
85 lines
2.3 KiB
JSON
85 lines
2.3 KiB
JSON
{
|
|
"name": "monkeytype-backend",
|
|
"version": "1.14.3",
|
|
"license": "GPL-3.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"watch": "tsc --build --watch",
|
|
"clean": "tsc --build --clean",
|
|
"start": "npm run build && node ./build/server.js",
|
|
"test": "vitest run",
|
|
"test-coverage": "vitest run --coverage",
|
|
"dev": "ts-node-dev --transpile-only --inspect -- ./src/server.ts",
|
|
"knip": "knip",
|
|
"docker-db-only": "docker compose -f docker/compose.db-only.yml up",
|
|
"docker": "docker compose -f docker/compose.yml up"
|
|
},
|
|
"engines": {
|
|
"node": "18.19.1",
|
|
"npm": "10.2.4"
|
|
},
|
|
"dependencies": {
|
|
"@date-fns/utc": "1.2.0",
|
|
"bcrypt": "5.1.1",
|
|
"bullmq": "1.91.1",
|
|
"chalk": "4.1.2",
|
|
"cors": "2.8.5",
|
|
"cron": "2.3.0",
|
|
"date-fns": "3.6.0",
|
|
"dotenv": "10.0.0",
|
|
"express": "4.17.3",
|
|
"express-rate-limit": "6.2.1",
|
|
"firebase-admin": "12.0.0",
|
|
"helmet": "4.6.0",
|
|
"ioredis": "4.28.5",
|
|
"joi": "17.6.0",
|
|
"lodash": "4.17.21",
|
|
"lru-cache": "7.10.1",
|
|
"mjml": "4.15.0",
|
|
"mongodb": "6.3.0",
|
|
"mustache": "4.2.0",
|
|
"node-fetch": "2.6.7",
|
|
"nodemailer": "6.9.9",
|
|
"nodemon": "3.0.1",
|
|
"object-hash": "3.0.0",
|
|
"path": "0.12.7",
|
|
"prom-client": "14.0.1",
|
|
"rate-limiter-flexible": "2.3.7",
|
|
"simple-git": "3.16.0",
|
|
"string-similarity": "4.0.4",
|
|
"swagger-stats": "0.99.5",
|
|
"swagger-ui-express": "4.3.0",
|
|
"ua-parser-js": "0.7.28",
|
|
"uuid": "9.0.1",
|
|
"winston": "3.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcrypt": "5.0.0",
|
|
"@types/cors": "2.8.12",
|
|
"@types/cron": "1.7.3",
|
|
"@types/express": "4.17.21",
|
|
"@types/ioredis": "4.28.10",
|
|
"@types/lodash": "4.14.178",
|
|
"@types/mustache": "4.2.2",
|
|
"@types/node": "18.19.1",
|
|
"@types/node-fetch": "2.6.1",
|
|
"@types/nodemailer": "6.4.7",
|
|
"@types/object-hash": "2.2.1",
|
|
"@types/readline-sync": "1.4.8",
|
|
"@types/string-similarity": "4.0.0",
|
|
"@types/supertest": "2.0.12",
|
|
"@types/swagger-stats": "0.95.4",
|
|
"@types/swagger-ui-express": "4.1.3",
|
|
"@types/ua-parser-js": "0.7.36",
|
|
"@types/uuid": "8.3.4",
|
|
"@vitest/coverage-v8": "1.6.0",
|
|
"ioredis-mock": "7.4.0",
|
|
"readline-sync": "1.4.10",
|
|
"supertest": "6.2.3",
|
|
"ts-node-dev": "2.0.0",
|
|
"typescript": "5.3.3",
|
|
"vitest": "1.6.0",
|
|
"vitest-mongodb": "0.0.5"
|
|
}
|
|
}
|