-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 781 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 781 Bytes
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
{
"name": "bot-builder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "nodemon --ignore 'dist/**/*' --exec \"ts-node index.ts\"",
"dev:build": "nodemon --ignore 'dist/**/*' --exec \"npm run build && node dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/circular-json": "^0.4.0",
"@types/node": "^20.11.19",
"prisma": "^5.9.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.14.0",
"bing-translate-api": "^4.0.1",
"circular-json": "^0.5.9",
"dotenv": "^16.4.4",
"telegraf": "^4.16.3"
}
}