-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
45
{
"name": "megaskababot",
"version": "1.0.0",
"description": "Telegram-botti urheilusuoritusten kirjaamiseen",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun --respawn ./src/index.ts",
"migrate": "bunx prisma migrate dev",
"generate": "bunx prisma generate",
"sync-prisma": "bun migrate && bun generate",
"start": "bun ./src/index.ts",
"biome": "bunx @biomejs/biome check **/*.ts **/*.js --apply ."
},
"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": {
"@prisma/client": "^4.9.0",
"@types/express": "^4.17.16",
"@types/uuid": "^9.0.0",
"axios": "^1.2.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"lodash": "^4.17.21",
"telegraf": "^4.11.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/lodash": "^4.14.191",
"@typescript-eslint/parser": "^5.46.0"
}
}