2023-06-04 04:28:07 +02:00
|
|
|
{
|
|
|
|
"name": "socials-to-chat",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Turn creator socials into chatbots with long-term-memory though a simple UI",
|
|
|
|
"main": "index.js",
|
|
|
|
"author": "Timothy Carambat (Mintplex Labs)",
|
|
|
|
"license": "MIT",
|
2023-06-08 19:29:17 +02:00
|
|
|
"engines": {
|
|
|
|
"node": ">=18"
|
|
|
|
},
|
2023-06-04 04:28:07 +02:00
|
|
|
"scripts": {
|
2023-06-08 06:31:35 +02:00
|
|
|
"lint": "cd server && yarn lint && cd .. && cd frontend && yarn lint",
|
2023-06-04 04:28:07 +02:00
|
|
|
"setup": "cd server && yarn && cd .. && yarn setup:envs && echo \"Please run yarn dev:server and yarn dev:frontend in separate terminal tabs.\"",
|
|
|
|
"setup:envs": "cd server && cp -n .env.example .env.development && cd ../collector && cp -n .env.example .env && cd ..",
|
|
|
|
"dev:server": "cd server && yarn dev",
|
2023-06-07 22:43:22 +02:00
|
|
|
"dev:frontend": "cd frontend && yarn start",
|
|
|
|
"prod:server": "cd server && yarn start",
|
2023-06-08 21:49:33 +02:00
|
|
|
"prod:frontend": "cd frontend && yarn build"
|
2023-06-04 04:28:07 +02:00
|
|
|
},
|
|
|
|
"private": false
|
|
|
|
}
|