-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 954 Bytes
/
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
{
"name": "pickpickebot",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"dev": "nodemon --ignore sessions.json ./build/index.js",
"buildW": "tsc -w",
"build": "tsc",
"start": "node ./build/index.js",
"ts-node": "npx ts-node ./src/index.ts",
"migrateDev": "npx prisma migrate dev",
"migrate": "npx prisma migrate deploy"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"dotenv": "^16.3.1",
"eslint": "^8.48.0",
"nodemon": "^3.0.1",
"prisma": "^5.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@prisma/client": "^5.2.0",
"nanoid": "3.3.6",
"pg": "^8.11.3",
"telegraf": "^4.13.1"
}
}