-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
26 lines (26 loc) · 1.09 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
{
"name": "petercat",
"version": "0.0.0",
"private": true,
"scripts": {
"bootstrap": "cd client && yarn && cd ../assistant && yarn && cd ../server && bash setup_python.sh",
"client": "cd client && yarn run dev",
"assistant": "cd assistant && yarn run dev",
"server": "cd server && ./venv/bin/python3 -m uvicorn main:app --reload",
"server:local": "cd server && ./venv/bin/python3 -m uvicorn main:app --port 8001 --reload",
"env:pull": "cd server && ./venv/bin/python3 scripts/envs.py pull",
"client:server": "concurrently \"yarn run server\" \"yarn run client\"",
"assistant:server": "concurrently \"yarn run server\" \"yarn run assistant\"",
"build:docker": "docker build -t petercat .",
"build:pypi": "rm -rf dist && python3 -m build",
"publish:test": "python3 -m twine upload --repository petercat-utils dist/* ",
"publish:pypi": "python3 -m twine upload --repository pypi dist/* "
},
"engines": {
"node": "^18 || >=20"
},
"repository": "https://github.com/petercat-ai/petercat.git",
"devDependencies": {
"concurrently": "^8.2.2"
}
}