mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-11 01:15:49 +08:00
f9d6f52c15
* Feat:Update response structure (#2427) * Fix:response and error structure * update:response message * update:response class * update * Update response message Co-authored-by: Mustafiz Kaifee Mumtaz <mustafiz.mumtaz@freecharge.com> * Add MonkeyToken foundation (#2487) by Bruception * Api changes (#2492) * API changes * Remove unused import * Add Ape client (#2513) * Add all endpoints (#2514) * Merged backend typescript into api overhaul (#2515) * Install typescript and add backend tsconfig Cannot yet build due to a number of compilation errors in JS code Signed-off-by: Brian Evans <ebrian101@gmail.com> * Fix typescript compilation errors Signed-off-by: Brian Evans <ebrian101@gmail.com> * Migrated backend to ES modules Switched to import export syntax Signed-off-by: Brian Evans <ebrian101@gmail.com> * Add typescript declaration for anticheat Signed-off-by: Brian Evans <ebrian101@gmail.com> * Rename top level files to .ts Fix service account json file typing Signed-off-by: Brian Evans <ebrian101@gmail.com> * Add dev build scripts for backend typescript Signed-off-by: Brian Evans <ebrian101@gmail.com> * Removed empty lines and switched to using db Cleaned up imports by removing needless empty lines and migrated to the new db.js instead of mongodb.js. Signed-off-by: Brian Evans <ebrian101@gmail.com> * Fixed backend commonjs syntax to ES module syntax Signed-off-by: Brian Evans <ebrian101@gmail.com> * Add build to backend start script Signed-off-by: Brian Evans <ebrian101@gmail.com> * Migrate some endpoints to Ape * Strict equals * Remove artifact * ape -> Ape * Ape migration p2 (#2522) * Migrate leaderboard endpoints to ape * Fixed comment * Init backend types * Fail * Return * Migrate Quotes to Ape (#2528) * Migrate quotes to Ape * Fix backend response * Fix issue * Fix rate limit (#2533) * fix rate limit * Fix import * Fix issues * Ape migration p4 (#2547) * Migrate results endpoints to ape * Remove unused import * Remove unused import * Fix loaders * Make function async * Hide try saving results * Migrate some users endpoints to Ape (#2548) * Complete Ape Migration (#2553) * Complete ape migration * Fix preset * Return preset data * Add typings * Move captcha reset * Read from params * Fix result tags endpoint * Fix stuck loader * fixed lb memory not saving * fixed quote rating popup not showing up for new users Co-authored-by: Mustafiz Kaifee <49086821+Mustafiz04@users.noreply.github.com> Co-authored-by: Mustafiz Kaifee Mumtaz <mustafiz.mumtaz@freecharge.com> Co-authored-by: Brian Evans <53117772+mrbrianevans@users.noreply.github.com> Co-authored-by: Miodec <bartnikjack@gmail.com>
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "monkeytype-backend",
|
|
"version": "1.0.0",
|
|
"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",
|
|
"dev": "nodemon --watch build/server.js ./build/server.js",
|
|
"start:dev": "concurrently \"npm run watch\" \"npm run dev\""
|
|
},
|
|
"engines": {
|
|
"node": "16.13.2",
|
|
"npm": "8.1.2"
|
|
},
|
|
"dependencies": {
|
|
"cors": "2.8.5",
|
|
"cron": "1.8.2",
|
|
"dotenv": "10.0.0",
|
|
"express": "4.17.1",
|
|
"express-rate-limit": "6.2.1",
|
|
"firebase-admin": "9.11.0",
|
|
"helmet": "4.6.0",
|
|
"joi": "17.6.0",
|
|
"lodash": "4.17.21",
|
|
"mongodb": "3.6.9",
|
|
"node-fetch": "2.6.7",
|
|
"node-object-hash": "2.3.10",
|
|
"nodemon": "2.0.7",
|
|
"path": "0.12.7",
|
|
"simple-git": "2.45.1",
|
|
"string-similarity": "4.0.4",
|
|
"ua-parser-js": "0.7.28",
|
|
"uuid": "8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "2.8.12",
|
|
"@types/node": "17.0.18",
|
|
"@types/uuid": "8.3.4"
|
|
}
|
|
}
|