-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "deep-learning-labs-gpt3-node-bolilerplate",
"version": "0.0.1",
"description": "System to fetch & refine data with AI",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"cheerio": "node cheerio.js",
"gpt3": "node gpt3.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextgrid/astrid.git"
},
"keywords": [
"ai",
"gpt3",
"nextgrid"
],
"author": "Mathias and Richard",
"license": "ISC",
"bugs": {
"url": "https://github.com/nextgrid/astrid/issues"
},
"homepage": "https://github.com/nextgrid/astrid#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"node-fetch": "^2.6.1",
"openai-api": "^1.0.17",
"request": "^2.88.2"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"prettier": "^2.2.1"
}
}