cookie-dialog-monster/packages/api/package.json

40 lines
1015 B
JSON
Raw Normal View History

{
"name": "api",
"version": "1.0.0",
"scripts": {
"build": "rimraf build && tsc",
"dev": "nodemon",
"lint": "eslint src/**/*.ts --fix",
2023-09-29 15:45:52 +00:00
"start": "NODE_PATH=build node build/index.js --env-file .env"
},
"dependencies": {
2023-09-29 15:45:52 +00:00
"@fastify/cors": "^8.4.0",
"@fastify/rate-limit": "^8.0.3",
2023-10-25 06:58:53 +00:00
"fastify": "^4.24.3",
2023-09-29 15:45:52 +00:00
"node-fetch": "^2.7.0",
2023-10-25 06:58:53 +00:00
"nodemailer": "^6.9.7",
2023-09-29 15:45:52 +00:00
"octokit": "^3.1.1"
},
"devDependencies": {
2023-09-29 15:45:52 +00:00
"@tsconfig/node20": "^20.1.2",
2023-10-25 06:58:53 +00:00
"@types/node": "^20.8.8",
"@types/node-fetch": "^2.6.7",
"@types/nodemailer": "^6.4.13",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
2023-09-29 15:45:52 +00:00
"eslint-config-prettier": "^9.0.0",
2023-10-25 06:58:53 +00:00
"eslint-plugin-prettier": "^5.0.1",
2023-09-29 15:45:52 +00:00
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
2022-07-14 16:45:01 +00:00
"ts-node": "^10.9.1",
2023-05-20 15:24:27 +00:00
"tsconfig-paths": "^4.2.0",
2023-09-29 15:45:52 +00:00
"typescript": "^5.2.2"
},
"engines": {
2023-10-25 06:58:53 +00:00
"node": "20.x"
},
2023-10-25 06:58:53 +00:00
"packageManager": "yarn@4.0.0",
"license": "MIT"
}