fix: base setup

This commit is contained in:
2024-05-10 17:04:58 +03:00
parent 4da4c567f6
commit fb1e88a496
10 changed files with 763 additions and 0 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "requestbot",
"version": "1.0.0",
"description": "",
"main": "/src/index.ts",
"scripts": {
"watch": "npx nodemon ./src/index.ts",
"build": "npx tsc ./src/index.ts --outDir ./build && node ./build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"dotenv": "^16.4.5",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}