-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.29 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
46
47
48
49
50
51
{
"name": "babyagi-langchain-ts",
"version": "0.0.1",
"description": "",
"scripts": {
"clean": "rimraf ./build",
"build": "npm-run-all format lint test clean && tsc",
"start": "node src",
"local": "ts-node src",
"local:watch": "nodemon src -e ts,json --exec 'npm run local'",
"lint": "eslint src",
"format": "npx prettier --write src",
"format:check": "npx prettier --check src",
"test": "jest"
},
"keywords": [
"typescript",
"node",
"eslint",
"prettier",
"jest",
"supertest"
],
"author": "Elson Correia @ Before Semicolon",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@pinecone-database/pinecone": "^0.0.12",
"dotenv": "^16.0.3",
"inquirer": "^8.0.1",
"langchain": "^0.0.53"
}
}