-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 KB
/
package.json
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
42
43
44
{
"name": "putzbot",
"version": "1.0.0",
"description": "A telegram bot for automating cleaning duties",
"scripts": {
"dev": "NODE_ENV=development ts-node src/app.ts",
"postinstall": "npx prisma generate",
"build": "tsc && npx prisma generate",
"start": "node build/app.js",
"deploy": "gcloud app deploy"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [
"telegram",
"bot",
"cleaning",
"duties",
"automation"
],
"author": "Eric Matala de Mazza",
"repository": {
"type": "git",
"url": "https://github.com/ematala/putzbot"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.16.1",
"@types/node-cron": "^3.0.7",
"prisma": "^4.13.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@prisma/client": "4.13.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"node-cron": "^3.0.2",
"telegraf": "^4.12.2"
}
}