-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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": "openchat",
"version": "1.0.0",
"license": "MIT",
"exports": "./server.ts",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsup server.ts",
"start": "node dist/server.js",
"dev": "yarn build --watch --onSuccess \"yarn start\"",
"lint": "eslint --fix .",
"format": "prettier --write .",
"prepare": "husky install"
},
"type": "module",
"engines": {
"node": ">=16"
},
"dependencies": {
"chatgpt": "^5.2.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"openai": "^3.3.0"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.4.2",
"@tsconfig/recommended": "^1.0.2",
"@types/express": "^4.17.17",
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
}
}