JSON · 436 bytes Raw Blame History
1 {
2 "name": "localtoast",
3 "version": "1.0.0",
4 "private": true,
5 "scripts": {
6 "dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
7 "dev:backend": "cd backend && python manage.py runserver",
8 "dev:frontend": "cd frontend && npm run dev",
9 "install:all": "cd frontend && npm install",
10 "build:frontend": "cd frontend && npm run build"
11 },
12 "devDependencies": {
13 "concurrently": "^8.2.2"
14 }
15 }