2022-05-05 15:19:35 +00:00
|
|
|
{
|
2022-05-23 11:07:25 +00:00
|
|
|
"name": "api",
|
2022-05-05 15:19:35 +00:00
|
|
|
"version": "1.0.0",
|
|
|
|
"scripts": {
|
|
|
|
"build": "rimraf build && tsc",
|
|
|
|
"dev": "nodemon",
|
|
|
|
"lint": "eslint src/**/*.ts --fix",
|
|
|
|
"start": "NODE_PATH=build node build/index.js"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-06-21 22:20:26 +00:00
|
|
|
"@fastify/cors": "^8.0.0",
|
|
|
|
"@fastify/rate-limit": "^7.0.0",
|
2022-05-12 18:46:50 +00:00
|
|
|
"dotenv": "^16.0.1",
|
2022-06-21 22:20:26 +00:00
|
|
|
"fastify": "^4.1.0",
|
2022-05-23 16:13:42 +00:00
|
|
|
"node-fetch": "2.6.7",
|
2022-05-05 18:11:43 +00:00
|
|
|
"nodemailer": "^6.7.5"
|
2022-05-05 15:19:35 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-06-21 22:20:26 +00:00
|
|
|
"@tsconfig/node16": "^1.0.3",
|
2022-05-05 18:11:43 +00:00
|
|
|
"@types/node": "^16.11.33",
|
2022-06-21 22:20:26 +00:00
|
|
|
"@types/node-fetch": "^2.6.2",
|
2022-05-05 15:19:35 +00:00
|
|
|
"@types/nodemailer": "^6.4.4",
|
2022-06-21 22:20:26 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.29.0",
|
|
|
|
"@typescript-eslint/parser": "^5.29.0",
|
|
|
|
"eslint": "^8.18.0",
|
2022-05-05 18:11:43 +00:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2022-05-05 15:19:35 +00:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-05-05 18:11:43 +00:00
|
|
|
"nodemon": "^2.0.16",
|
2022-05-05 15:19:35 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2022-06-21 22:20:26 +00:00
|
|
|
"ts-node": "^10.8.1",
|
2022-05-05 18:11:43 +00:00
|
|
|
"tsconfig-paths": "^4.0.0",
|
2022-06-21 22:20:26 +00:00
|
|
|
"typescript": "^4.7.4"
|
2022-05-05 15:19:35 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": "16.x"
|
|
|
|
},
|
2022-05-23 17:05:58 +00:00
|
|
|
"packageManager": "yarn@3.2.1",
|
2022-05-05 15:19:35 +00:00
|
|
|
"license": "MIT"
|
|
|
|
}
|