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

41 lines
1.0 KiB
JSON
Raw Normal View History

{
"name": "api",
"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-11-29 18:54:18 +00:00
"@fastify/cors": "^8.2.0",
2022-10-13 14:42:56 +00:00
"@fastify/rate-limit": "^7.5.0",
"dotenv": "^16.0.3",
2022-11-29 18:54:18 +00:00
"fastify": "^4.10.2",
2022-06-28 16:06:43 +00:00
"node-fetch": "^2.6.7",
"nodemailer": "^6.8.0",
2022-11-29 18:54:18 +00:00
"octokit": "^2.0.10"
},
"devDependencies": {
2022-06-21 22:20:26 +00:00
"@tsconfig/node16": "^1.0.3",
2022-11-29 18:54:18 +00:00
"@types/node": "^16.18.3",
2022-06-21 22:20:26 +00:00
"@types/node-fetch": "^2.6.2",
2022-09-24 14:13:24 +00:00
"@types/nodemailer": "^6.4.6",
2022-11-29 18:54:18 +00:00
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
2022-07-14 16:45:01 +00:00
"eslint-plugin-prettier": "^4.2.1",
2022-09-24 14:13:24 +00:00
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
2022-07-14 16:45:01 +00:00
"ts-node": "^10.9.1",
2022-09-24 14:13:24 +00:00
"tsconfig-paths": "^4.1.0",
2022-11-29 18:54:18 +00:00
"typescript": "^4.9.3"
},
"engines": {
"node": "16.x"
},
2022-05-23 17:05:58 +00:00
"packageManager": "yarn@3.2.1",
"license": "MIT"
}