generated from broomva/databricks_session
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.2 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": "vortex",
"version": "0.1.5",
"private": true,
"scripts": {
"fastapi": "python -m uvicorn vortex.api:app --reload",
"ngrok": "ngrok http 8000",
"host-api": "concurrently \"npm run fastapi\" \"npm run ngrok\"",
"vortex-flows-webserver": "dagster-webserver -h 0.0.0.0 -p 10000",
"vortex-flows-daemon": "dagster-daemon run",
"vortex-flows": "concurrently \"npm run vortex-flows-webserver\" \"npm run vortex-flows-daemon\"",
"next-dev": "next dev",
"next-start": "next start",
"dev": "pip install . && concurrently \"npm run next-dev\" \"npm run host-api\" \"npm run vortex-flows\" ",
"start": "pip install . && concurrently \"npm run next-start\" \"npm run host-api\" \"npm run vortex-flows\"",
"build": "next build && pip install .",
"lint": "next lint && black ."
},
"dependencies": {
"@types/node": "20.2.4",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"concurrently": "^8.0.1",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"next": "13.5.1",
"postcss": "8.4.32",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
}
}