-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.32 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
44
45
46
{
"name": "kutt-stats-bot",
"version": "1.0.0",
"description": "Check kutt stats",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"removePrismaExtras": "rm -rf node_modules/.prisma/client/libquery_engine-debian-openssl-1.1.x.so.node && rm -rf node_modules/@prisma/engines",
"build": "npm run generate && tsc -p .",
"generateProxy": "PRISMA_CLIENT_ENGINE_TYPE='dataproxy' prisma generate",
"dev": "nodemon src/index.ts",
"generate": "prisma generate",
"deploy": "prisma migrate deploy",
"migrate": "prisma migrate dev",
"reset": "prisma migrate reset"
},
"repository": {
"type": "git",
"url": "git+https://github.com/francisyzy/kutt-stats-bot.git"
},
"author": "francisyzy",
"bugs": {
"url": "https://github.com/francisyzy/kutt-stats-bot/issues"
},
"homepage": "https://github.com/francisyzy/kutt-stats-bot#readme",
"engines": {
"node": "15.x"
},
"dependencies": {
"@prisma/client": "^3.6.0",
"@types/dotenv": "^8.2.0",
"date-fns": "^2.28.0",
"dotenv": "^10.0.0",
"got": "^12.5.3",
"telegraf": "^4.4.2"
},
"devDependencies": {
"@types/node": "^16.11.11",
"nodemon": "^2.0.15",
"prettier": "^2.5.0",
"prisma": "^3.6.0",
"ts-node": "^10.4.0",
"typegram": "^3.5.1",
"typescript": "^4.5.2"
}
}