-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
33 lines (33 loc) · 1.11 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
{
"name": "reactweek-hackathon",
"type": "module",
"scripts": {
"install": "python -m venv .venv && .venv/bin/pip install -r requirements.txt",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"server": "uvicorn server.app:app --host 0.0.0.0 --port 8000 --reload",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:kill": "docker compose down --volumes --remove-orphans",
"dbmate": "docker run --rm -it -e DATABASE_URL=postgres://postgres:postgres@reactweek-hackathon-db-1:5432/postgres?sslmode=disable --network=reactweek-hackathon_default -v \"$(pwd)/db:/db\" amacneil/dbmate:1"
},
"dependencies": {
"graphql": "^16.6.0",
"graphql-ws": "^5.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-markdown": "^8.0.3",
"remark-gfm": "^3.0.1",
"subscriptions-transport-ws": "^0.11.0",
"urql": "^3.0.3"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"prettier": "2.7.1",
"vite": "^3.1.0"
}
}