-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 979 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 979 Bytes
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": "cat-facts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && uvicorn main:app --reload",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"seed": "python backend/seed.py",
"build:frontend": "cd frontend && npm i && npm run build",
"build:backend": "cd backend && pip install -r requirements.txt",
"build": "concurrently \"npm run build:frontend\" \"npm run build:backend\"",
"start:frontend": "serve -s frontend/dist",
"start:backend": "cd backend && uvicorn main:app --host 0.0.0.0 --port 8000",
"render-build": "npm i && npm run build",
"start": "concurrently \"npm run start:frontend\" \"npm run start:backend\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.2.0"
}
}