-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "next-opportunity-generation-pipeline",
"version": "1.0.0",
"description": "scraping your next opportunities",
"main": "index.js",
"pre-commit": [
"prettier-format"
],
"scripts": {
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test": "NODE_ENV=test ",
"opportunities": "NODE_ENV=development ts-node-dev ./src/opportunities.ts",
"start": "npm run build && node build/opportunities.js",
"build": "rm -rf ./build && tsc"
},
"author": "danaz",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.4.10",
"@types/turndown": "^5.0.1",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"pre-commit": "^1.2.2",
"prettier": "^3.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"puppeteer": "^21.0.3",
"turndown": "^7.1.2",
"uuid": "^9.0.0",
"winston": "^3.10.0",
"zod": "^3.21.4"
}
}