[ABANDONED] API server for Flexor social network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.2 KiB

5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. {
  2. "name": "flexor-api",
  3. "description": "Flexor API server.",
  4. "version": "1.0.3",
  5. "private": true,
  6. "engines": {
  7. "node": ">=12.0.0"
  8. },
  9. "scripts": {
  10. "start": "node dist/server.js",
  11. "prestart": "npm run build",
  12. "build": "tsc",
  13. "watch": "run-p watch-typescript watch-server",
  14. "watch-server": "nodemon dist/server.js",
  15. "watch-typescript": "tsc -w"
  16. },
  17. "devDependencies": {
  18. "@types/bcryptjs": "^2.4.2",
  19. "@types/dotenv": "^8.2.0",
  20. "@types/jsonwebtoken": "^8.3.5",
  21. "@types/lodash": "^4.14.149",
  22. "@types/uuid": "^3.4.6",
  23. "nodemon": "^2.0.2",
  24. "npm-run-all": "^4.1.5",
  25. "pino-pretty": "^3.5.0",
  26. "typescript": "^3.7.4"
  27. },
  28. "dependencies": {
  29. "@azure/cosmos": "^3.5.2",
  30. "@azure/storage-blob": "^12.0.1",
  31. "bcryptjs": "^2.4.3",
  32. "dotenv": "^8.2.0",
  33. "fastify": "^2.11.0",
  34. "fastify-cors": "^3.0.0",
  35. "fastify-helmet": "^3.0.2",
  36. "fastify-swagger": "^2.5.0",
  37. "jsonwebtoken": "^8.5.1",
  38. "lodash": "^4.17.15",
  39. "moment": "^2.24.0",
  40. "uuid": "^3.3.3",
  41. "winston": "^3.2.1"
  42. }
  43. }