-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 918 Bytes
/
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": "proof-assistant",
"version": "0.1.0",
"private": true,
"scripts": {
"fastapi-dev": "pip3 install -r requirements.txt && python3 -m uvicorn api.index:app --reload",
"next-dev": "next dev",
"dev": "concurrently \"npm run next-dev\" \"npm run fastapi-dev\"",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.6",
"@supabase/supabase-js": "^1.13.1",
"@supabase/ui": "^0.27.2",
"@tailwindcss/typography": "^0.4.1",
"axios": "^1.4.0",
"concurrently": "^8.2.1",
"easymde": "^2.15.0",
"next": "10.2.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^6.0.3",
"react-simplemde-editor": "^5.0.1"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"postcss": "^8.3.0",
"tailwindcss": "^2.1.4"
}
}