-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 973 Bytes
/
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
{
"name": "company-scraper",
"version": "1.0.0",
"description": "get business data from website",
"main": "src/app.ts",
"repository": "https://github.com/mattbr0wn/company-scraper.git",
"author": "Matt Brown <matt@openline.ai>",
"license": "MIT",
"type": "module",
"dependencies": {
"@pinecone-database/pinecone": "^0.1.5",
"@types/airtable": "^0.10.1",
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.31",
"@types/csv-parse": "^1.2.2",
"@types/node": "^20.0.0",
"airtable": "^0.11.6",
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"csv-parse": "^5.3.10",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"dotenv": "^16.0.3",
"langchain": "^0.0.75",
"node-fetch": "^3.3.1",
"openai": "^3.2.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"ts-node": "^10.9.1"
},
"scripts": {
"build": "tsc",
"start": "node ./bin/app.js",
"dev": "ts-node ./src/app.ts"
}
}