chore: archive the repository
2
api/.gitignore
vendored
@ -22,7 +22,7 @@
|
||||
# misc
|
||||
.DS_Store
|
||||
/temp
|
||||
/assets/images/
|
||||
/assets/images/users
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM node:14.15.3-alpine3.12
|
||||
FROM node:14.16.1
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
BIN
api/assets/images/functions/armstrongNumber.png
Normal file
After Width: | Height: | Size: 9.2 KiB |
BIN
api/assets/images/functions/arrayMethods.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
api/assets/images/functions/calculateAge.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
api/assets/images/functions/chronometerTimer.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
api/assets/images/functions/convertCurrency.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
api/assets/images/functions/convertDistance.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
api/assets/images/functions/convertEncoding.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
api/assets/images/functions/convertMarkdown.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
api/assets/images/functions/convertRomanArabicNumbers.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
api/assets/images/functions/convertTemperature.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
api/assets/images/functions/fibonacci.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
api/assets/images/functions/findLongestWord.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
api/assets/images/functions/heapAlgorithm.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
api/assets/images/functions/isPalindrome.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
api/assets/images/functions/linkShortener.png
Normal file
After Width: | Height: | Size: 9.5 KiB |
BIN
api/assets/images/functions/randomNumber.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
api/assets/images/functions/randomQuote.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
api/assets/images/functions/rightPrice.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
api/assets/images/functions/sortArray.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
api/assets/images/functions/toDoList.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
BIN
api/assets/images/functions/weatherRequest.png
Normal file
After Width: | Height: | Size: 16 KiB |
6521
api/package-lock.json
generated
@ -13,8 +13,7 @@
|
||||
"scripts": {
|
||||
"start": "node app.js",
|
||||
"dev": "nodemon app.js",
|
||||
"lint": "standard | snazzy",
|
||||
"format": "standard --fix | snazzy"
|
||||
"lint": "standard | snazzy"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.21.1",
|
||||
@ -22,25 +21,25 @@
|
||||
"cors": "^2.8.5",
|
||||
"dotenv": "^8.2.0",
|
||||
"express": "^4.17.1",
|
||||
"express-fileupload": "^1.2.0",
|
||||
"express-fileupload": "^1.2.1",
|
||||
"express-http-to-https": "^1.1.4",
|
||||
"express-rate-limit": "^5.2.3",
|
||||
"express-validator": "^6.9.0",
|
||||
"helmet": "^4.3.1",
|
||||
"jsdom": "^16.4.0",
|
||||
"express-rate-limit": "^5.2.6",
|
||||
"express-validator": "^6.10.0",
|
||||
"helmet": "^4.4.1",
|
||||
"jsdom": "^16.5.3",
|
||||
"jsonwebtoken": "^8.5.1",
|
||||
"moment": "^2.29.1",
|
||||
"morgan": "^1.10.0",
|
||||
"ms": "^2.1.3",
|
||||
"mysql2": "^2.2.5",
|
||||
"nodemailer": "^6.4.17",
|
||||
"sequelize": "^6.3.5",
|
||||
"nodemailer": "^6.5.0",
|
||||
"sequelize": "^6.6.2",
|
||||
"smart-request-balancer": "^2.1.1",
|
||||
"uuid": "^8.3.2",
|
||||
"validator": "^13.5.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"nodemon": "^2.0.6",
|
||||
"nodemon": "^2.0.7",
|
||||
"snazzy": "^9.0.0",
|
||||
"standard": "^16.0.3"
|
||||
}
|
||||
|