mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-24 12:20:14 +01:00
* Release 0.4.5 * Update @waylaidwanderer/node-chatgpt-api to latest version * Update dockerfiles to use workspaces and ensure packages are @ latest * Remove package-lock.json files from workspace directories as no longer needed * refactor(api): remove deprecated text-davinci-002-render-paid model from CHATGPT_MODELS refactor(api/client): change model comparison to use startsWith() instead of === for GPT-4 models
33 lines
1 KiB
JSON
33 lines
1 KiB
JSON
{
|
|
"name": "chatgpt-clone",
|
|
"version": "0.4.5",
|
|
"description": "",
|
|
"workspaces": [
|
|
"api",
|
|
"client"
|
|
],
|
|
"scripts": {
|
|
"backend": "cd api && npm run start",
|
|
"backend-dev": "cd api && npm run server-dev",
|
|
"frontend": "cd client && npm run build",
|
|
"frontend-dev": "cd client && npm run dev",
|
|
"e2e": "playwright test --config=e2e/playwright.config.js",
|
|
"e2e:update": "playwright test --config=e2e/playwright.config.js --update-snapshots",
|
|
"e2e:debug": "cross-env PWDEBUG=1 playwright test --config=e2e/playwright.config.js",
|
|
"e2e:report": "npx playwright show-report e2e/playwright-report"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/danny-avila/chatgpt-clone.git"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/danny-avila/chatgpt-clone/issues"
|
|
},
|
|
"homepage": "https://github.com/danny-avila/chatgpt-clone#readme",
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.32.1",
|
|
"cross-env": "^7.0.3"
|
|
}
|
|
}
|