-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
34 lines (34 loc) · 1.93 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
{
"name": "deep-learning-playground",
"version": "1.0.0",
"description": "Web Application where people new to Deep Learning can input a dataset and toy around with basic Pytorch modules through a drag and drop interface.",
"main": "index.tsx",
"scripts": {
"build:prod": "cd frontend && yarn install && REACT_APP_MODE=prod yarn run build",
"installf": "cd frontend && yarn install",
"installb": "poetry config virtualenvs.in-project true && cd backend && poetry env remove --all && pyenv local 3.9 && cd .. && yarn updateb",
"updateb": "cd backend && poetry install --no-root && poetry run ggshield auth login && poetry run pre-commit install",
"installa": "poetry config virtualenvs.in-project true && cd aws_write && poetry env remove --all && pyenv local 3.9 && cd .. && yarn updatea",
"updatea": "cd aws_write && poetry install --no-root && poetry run ggshield auth login && poetry run pre-commit install",
"startf": "cd frontend && yarn dev",
"secrets": "cd backend && poetry run python -m aws_helpers.aws_secrets_utils.build_env",
"startb": "cd backend && poetry run python app.py",
"starta": "cd aws_write && poetry run python app.py",
"installt": "cd training && poetry env remove --all && pyenv local 3.9 && cd .. && yarn updatet",
"updatet": "cd training && poetry install --no-root && poetry run ggshield auth login && poetry run pre-commit install",
"startt": "cd training && poetry run python manage.py runserver",
"docker:build": "docker build -t dlp ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/DSGT-DLP/Deep-Learning-Playground.git"
},
"keywords": [],
"author": "https://github.com/DSGT-DLP/Deep-Learning-Playground/blob/main/CODEOWNERS",
"license": "MIT",
"bugs": {
"url": "https://github.com/DSGT-DLP/Deep-Learning-Playground/issues"
},
"homepage": "https://github.com/DSGT-DLP/Deep-Learning-Playground#readme",
"dependencies": {}
}