-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.79 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
44
45
46
47
48
49
50
51
52
53
{
"name": "scrap_page",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:mihailShumilov/scrap_page.git",
"author": "mihailshumilov <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"dev-worker": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/workers/scrap.ts",
"clean": "rm -rf ./dist",
"copy-files": "cp -R ./src/public ./dist/ && cp -R ./src/views ./dist/",
"build": "yarn clean && tsc && yarn copy-files",
"start": "node dist/index.js",
"service:pm2:start": "pm2 start ecosystem.config.js --env production",
"service:pm2:reload": "pm2 reload ecosystem.config.js --env production",
"service:pm2:update": "npm install pm2 -g && pm2 update",
"service:pm2:stop": "pm2 stop ecosystem.config.js --env production && pm2 delete ecosystem.config.js --env production"
},
"devDependencies": {
"@types/diff": "^5.0.2",
"@types/express": "^4.17.15",
"@types/jquery": "^3.5.16",
"@types/jsdom": "^21.1.0",
"@types/mozilla-readability": "^0.2.1",
"@types/node": "^18.11.17",
"@types/pretty": "^2.0.1",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@mozilla/readability": "^0.4.2",
"axios": "^1.2.1",
"bullmq": "^3.4.2",
"cheerio": "^1.0.0-rc.12",
"diff": "^5.1.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"jquery": "^3.6.3",
"jsdom": "^21.1.0",
"normalize-url": "^8.0.0",
"pm2": "^5.2.2",
"pretty": "^2.0.0",
"puppeteer": "^19.4.1",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-recaptcha": "^3.6.6",
"puppeteer-extra-plugin-stealth": "^2.11.1",
"socket.io": "^4.5.4",
"url": "^0.11.0"
}
}