-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "animebot",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "prisma generate && tsc -p ./tsconfig.json && node -r dotenv/config ./dist/main.js",
"build": "prisma generate && prisma db push && tsc -p ./tsconfig.json",
"validate": "prisma validate",
"db-pull": "prisma db pull",
"generate": "prisma generate",
"format": "prisma format",
"prisma": "prisma generate && prisma db push",
"studio": "prisma studio",
"watch": "tsc-watch --noClear -p ./tsconfig.json --onSuccess \"node -r dotenv/config ./dist/main.js\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.16.2",
"axios": "^1.1.2",
"dayjs": "^1.11.6",
"dotenv": "^10.0.0",
"node-schedule": "^2.1.0",
"signale": "^1.4.0",
"telegraf": "^4.8.1"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@types/node-schedule": "^2.1.0",
"@types/signale": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"prisma": "^4.16.2",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4"
}
}