-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "Bot",
"version": "1.0.0",
"description": "Project in Nodejs With typescript",
"main": "src/schedule.ts",
"scripts": {
"build": "tsc",
"schedule": "ts-node-dev --transpile-only --ignore-watch node_modules --transpile-only src/schedule.ts",
"start": "pm2-runtime start ecosystem.config.js --env production",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watchAll --maxWorkers=1",
"test:clear": "jest --clearCache"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.31",
"@types/jest": "^27.4.1",
"@types/puppeteer": "^5.4.5",
"@types/node": "^17.0.24",
"@types/node-cron": "^3.0.1",
"jest": "^27.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"dependencies": {
"@prisma/client": "^3.12.0",
"prisma": "^3.12.0",
"axios": "^0.26.1",
"dotenv": "^16.0.1",
"node-cron": "^3.0.0",
"telegraf": "^4.7.0",
"cheerio": "^1.0.0-rc.10",
"pm2": "^5.2.0",
"puppeteer": "^13.5.1"
}
}