-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.48 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.48 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
42
43
{
"name": "megaskababot",
"version": "1.0.0",
"description": "Telegram-botti urheilusuoritusten kirjaamiseen",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "deno run --env-file --allow-all --watch ./src/index.ts",
"migrate": "deno run --env-file --allow-scripts --allow-all npm:prisma migrate dev",
"migrate-revert": "deno run --env-file --allow-scripts --allow-all npm:prisma migrate reset -f",
"generate": "deno run --env-file --allow-scripts --allow-all npm:prisma generate",
"sync-prisma": "deno task migrate && deno task generate",
"reset-db": "deno task migrate-revert && deno task migrate",
"start": "deno run --env-file --allow-all ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Prodeko/megaskababot.git"
},
"author": "Mediakeisari",
"license": "ISC",
"bugs": {
"url": "https://github.com/Prodeko/megaskababot/issues"
},
"homepage": "https://github.com/Prodeko/megaskababot#readme",
"dependencies": {
"@grammyjs/conversations": "^2.1.1",
"@grammyjs/runner": "^2.0.3",
"@grammyjs/storage-prisma": "^2.5.1",
"@prisma/client": "^6.19.2",
"@types/express": "^4.17.25",
"@types/uuid": "^9.0.8",
"axios": "^1.13.4",
"express": "^5.2.1",
"grammy": "^1.39.3",
"lodash": "^4.17.23",
"uuid": "^9.0.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash": "^4.17.23"
}
}