-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
41 lines (41 loc) · 1.87 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "django-react-typescript",
"version": "1.0.1",
"private": true,
"description": "This is an non-opinionated Django + React boilerplate built with great development experience and easy deployment in mind.",
"scripts": {
"bootstrap": "concurrently -n global,backend,frontend \"pnpm i\" \"poetry install\" \"cd frontend && pnpm i\"",
"setup:env": "sh ./scripts/setup_env.sh",
"test:static": "poetry run ruff check",
"format": "poetry run ruff format",
"build:frontend": "cd frontend && pnpm i && pnpm run build",
"dev:db:up": "docker compose -f ./docker-compose-dev-db.yml up",
"dev:db:migrate": "poetry run python3 manage.py migrate",
"dev:db:makemigrations": "poetry run python3 manage.py makemigrations",
"dev:backend": "pnpm run build:frontend && poetry run python3 manage.py runserver",
"dev:backend:db": "concurrently -n db,backend \"pnpm run dev:db:up\" \"wait-on tcp:5432 && pnpm run dev:backend\"",
"dev:frontend": "cd frontend && pnpm i && pnpm run dev",
"dev": "concurrently -n backend,frontend \"pnpm run dev:backend\" \"pnpm run dev:frontend\"",
"dev:full": "concurrently -n db,backend,frontend \"pnpm run dev:db:up\" \"wait-on tcp:5432 && pnpm run dev:backend\" \"pnpm run dev:frontend\"",
"release": "semantic-release",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcelovicentegc/django-react-typescript.git"
},
"author": "Marcelo Cardoso",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcelovicentegc/django-react-typescript/issues"
},
"homepage": "https://github.com/marcelovicentegc/django-react-typescript#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"concurrently": "^8.2.2",
"husky": "^9.0.11",
"semantic-release": "^24.0.0",
"wait-on": "^7.2.0"
}
}