-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
36 lines (36 loc) · 890 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
{
"name": "gpt-legion",
"version": "1.0.0",
"description": "My name is Legion, for we are many",
"main": "src/main.ts",
"scripts": {
"build": "npm run compile",
"compile": "tsc",
"lint": "./node_modules/.bin/eslint src",
"start": "ts-node src/main.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.3",
"dotenv": "^16.0.3",
"gpt-3-encoder": "^1.1.4",
"jest": "^29.5.0",
"lodash": "^4.17.21",
"openai": "^3.2.1",
"redis": "^4.6.5",
"ts-jest": "^29.0.5"
}
}