-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "search_indexer",
"version": "0.1.0",
"private": true,
"scripts": {
"fastapi-dev": "pip3 install -r requirements.txt && python3 -m uvicorn backend.main:app --reload",
"next-dev": "next dev",
"dev": "concurrently \"npm run next-dev\" \"npm run fastapi-dev\"",
"build": "next build",
"start": "next start -H 0.0.0.0 -p $PORT",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@heroicons/react": "^2.0.18",
"@mui/icons-material": "^5.14.16",
"@mui/material": "^5.14.17",
"axios": "^1.6.1",
"canvas": "^2.11.2",
"concurrently": "^8.2.2",
"next": "14.0.2",
"react": "^18",
"react-doc-viewer": "^0.1.5",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-pdf": "^7.5.1",
"webpack": "^5.89.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"browserify-zlib": "^0.2.0",
"daisyui": "^3.9.4",
"eslint": "^8",
"eslint-config-next": "14.0.2",
"postcss": "^8",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}