-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 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": "@pypes/jobs",
"version": "1.0.0",
"description": "Automate the application process on LinkedIn",
"main": "index.js",
"bin": {
"@pypes/jobs": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node cli/index.ts",
"dev": "nodemon --exec ts-node cli/index.ts",
"test": "jest"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"@types/node": "^20.14.2",
"nodemon": "^3.1.3",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@types/csv-write-stream": "^2.0.3",
"@types/js-yaml": "^4.0.9",
"@types/random-useragent": "^0.3.3",
"commander": "^12.1.0",
"csv-write-stream": "^2.0.0",
"gradient-string": "^2.0.2",
"js-yaml": "^4.1.0",
"playwright": "^1.44.1",
"random-useragent": "^0.5.0",
"simple-node-logger": "^21.8.12",
"winston": "^3.13.0"
}
}