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",
2023-01-12 17:10:53 +00:00
"@fastify/rate-limit": "^7.6.0",
2022-10-13 14:42:56 +00:00
"dotenv": "^16.0.3",
2023-01-12 17:10:53 +00:00
"fastify": "^4.11.0",
2022-06-28 16:06:43 +00:00
"node-fetch": "^2.6.7",
2023-01-12 17:10:53 +00:00
"nodemailer": "^6.9.0",
"octokit": "^2.0.11"
},
"devDependencies": {
2022-06-21 22:20:26 +00:00
"@tsconfig/node16": "^1.0.3",
2023-01-12 17:10:53 +00:00
"@types/node": "^16.18.11",
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",
2023-01-12 17:10:53 +00:00
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.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",
2023-01-12 17:10:53 +00:00
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"engines": {
"node": "16.x"
},
2022-05-23 17:05:58 +00:00
"packageManager": "yarn@3.2.1",
"license": "MIT"
}