-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 2.08 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
42
43
44
45
46
{
"name": "django-base-template",
"version": "0.0.0",
"private": true,
"license": "UNLICENSED",
"description": "This is a Django project template",
"repository": {
"type": "git",
"url": "git+https://github.com/ibraheem4/django-base-template.git"
},
"author": "Ibraheem Abdul-Malik <[email protected]>",
"main": "index.js",
"scripts": {
"collectstatic": "pipenv run python manage.py collectstatic",
"coverage:html": "pipenv run coverage html",
"generate-ssl": "sh ./scripts/generate-ssl-certificate.sh",
"kill:osx": "lsof -t -i tcp:8000 | xargs kill -9",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel 'lint:!(fix)'",
"lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
"lint:pylint": "pipenv run pylint --enable=unused-wildcard-import --disable=missing-docstring --disable=django-not-configured --load-plugins pylint_django project_name/apps/**/*.py project_name/**/*.py manage.py",
"lint:black:fix": "pipenv run black manage.py project_name/apps/ project_name/",
"lint:isort:fix": "pipenv run isort --profile black manage.py project_name/apps/ project_name/",
"load-fixtures": "pipenv run python manage.py loaddata project_name_sites users_users todos_todos socialaccount_socialapp_sites socialaccount_socialapp",
"migrate": "pipenv run python manage.py migrate",
"migrate:run-syncdb": "pipenv run python manage.py migrate --run-syncdb",
"pipenv:install": "pipenv run pipenv install",
"shell": "pipenv run python manage.py shell",
"start": "pipenv run daphne -e ssl:8000:privateKey=ssl/server.key:certKey=ssl/server.crt project_name.asgi:application",
"start:ssl-disabled": "pipenv run daphne project_name.asgi:application",
"test": "pipenv run pytest",
"prepare": "husky install"
},
"engines": {
"node": "22.9.0"
},
"devDependencies": {
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"husky": "8.0.2",
"npm-run-all": "4.1.5"
},
"dependencies": {
"ansi-regex": "^6.0.1",
"strip-ansi": "^7.0.1"
}
}