-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "dialogue",
"version": "0.1.0",
"description": "Dialogue startup",
"private": true,
"scripts": {
"flask-dev": "pip3 install -r requirements.txt && cd api && waitress-serve --listen=0.0.0.0:5000 main:app",
"build": "npm install && next build",
"test": "pytest api/tests",
"next-dev": "next dev -H 0.0.0.0 -p 3001",
"start": "npm run build && next start -p 3001 -H 0.0.0.0",
"production": "concurrently \"npm run start\" \"npm run flask-dev\"",
"dev": "concurrently \"npm run next-dev\" \"npm run flask-dev\""
},
"keywords": [
"nextjs",
"tailwindcss",
"flask"
],
"author": "Elston",
"license": "ISC",
"browser": {
"child_process": false
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/css": "^11.10.6",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.6",
"@fortawesome/fontawesome-free": "^6.5.1",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.18",
"@popperjs/core": "^2.11.8",
"@radix-ui/react-slot": "^1.0.2",
"@reduxjs/toolkit": "^2.2.5",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"antd": "^5.16.0",
"axios": "^1.6.8",
"chart.js": "^4.4.2",
"concurrently": "^8.2.2",
"date-picker": "^0.5.0",
"embla-carousel-react": "^8.0.0",
"eslint": "^8.57.0",
"firebase": "^10.5.2",
"fs.promises": "^0.1.2",
"lucide-react": "^0.344.0",
"mongodb": "^6.3.0",
"next": "^13.5.6",
"next-themes": "^0.2.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-datepicker": "^7.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-icons": "^5.0.1",
"react-query": "^3.39.3",
"react-redux": "^9.1.2",
"react-speech-recognition": "^3.10.0",
"react-table": "^7.8.0",
"redux-persist": "^6.0.0",
"regenerator-runtime": "^0.14.1",
"typescript": "^5.3.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/react-speech-recognition": "^3.9.5",
"autoprefixer": "^10.4.19",
"eslint-config-prettier": "^8.8.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4"
}
}