-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.23 KB
/
package.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.23 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
43
44
45
{
"name": "rabot",
"version": "1.0.0",
"description": "Your personal job-seeking bot",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "yarn build --watch & yarn start",
"start": "nodemon -r dotenv/config ./build/index.js",
"build": "tsc",
"type-check": "tsc --noEmit",
"lint": "eslint src",
"teardown-browser": "node ./build/scraping/teardownBrowser.js"
},
"keywords": [
"bot",
"telegram",
"node",
"job",
"work",
"employment",
"recruitment"
],
"author": "Jan Librowski",
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"mongodb": "^3.6.3",
"puppeteer": "^5.5.0",
"telegraf": "^4.0.1"
},
"devDependencies": {
"@types/lodash": "^4.14.167",
"@types/mongodb": "^3.6.3",
"@types/node": "^14.14.12",
"@types/puppeteer": "^5.4.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"husky": "^5.0.6",
"nodemon": "^2.0.6",
"typescript": "^4.1.3"
}
}