-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.24 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": "auto-ml",
"version": "0.0.0",
"description": "AutoML integration containing both the backend (Python) and frontend (TypeScript)",
"main": "index.js",
"scripts": {
"open-browser": "sleep 15 && open http://127.0.0.1:4200",
"proxy-education-saas": "ngrok http --region=us --hostname=edu.milo-ml.com 5000",
"serve": "npm run serve-all",
"serve-all": "concurrently 'npm run serve-api' 'cd ui && npm run start' 'rabbitmq-server' 'npm run serve-worker' 'npm run open-browser'",
"serve-all-local": "concurrently 'cross-env LOCAL_USER=true npm run serve-api' 'cd ui && npm run start-local' 'rabbitmq-server' 'npm run serve-worker' 'npm run open-browser'",
"serve-api": "watchmedo auto-restart -d . -R -p \"*.py\" -- python -u server.py",
"serve-worker": "watchmedo auto-restart -d . -R -p \"*.py\" -- celery -A worker worker -c 1",
"start": "npm run serve-all",
"test": "pytest ml/unit_test.py"
},
"repository": {
"type": "git",
"url": "[email protected]:v3/milo-ml/MILO-ML/AutoML"
},
"keywords": [
"machine",
"learning",
"automl",
"ml",
"scikit"
],
"author": "Samer Albahra",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.0.2",
"cross-env": "^7.0.2"
}
}