-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "bot-telegram-template",
"version": "1.0.0",
"description": "Template to create a telegram bot with Typescript and Express.",
"main": "dist/app.js",
"scripts": {
"dev": "nodemon --watch 'src/' --exec 'ts-node src/app.ts' -e ts",
"prestart": "tsc",
"start": "ts-node src/app.ts",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "juninhopo <kelgaxd@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/pino": "^7.0.5",
"@types/pino-http": "^5.8.4",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"i": "^0.3.7",
"nodemon": "^3.0.1",
"npm": "^10.2.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jest": "^29.7.0",
"pino-http": "^8.6.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
}
}