forked from ohcnetwork/ayushma_fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "ayushma_fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:all": "npm-run-all --parallel dev:next dev:chatbot",
"dev": "next dev",
"dev:chatbot": "cd chatbot && yarn build-watch",
"build": "yarn build:chatbot && yarn build:next",
"build:next": "next build",
"build:chatbot": "cd chatbot && yarn build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"i-all": "yarn && cd chatbot && yarn"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@tanstack/react-query": "^4.29.3",
"@tanstack/react-query-devtools": "^4.29.3",
"@types/node": "18.16.0",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"jotai": "^2.0.4",
"json2csv": "^6.0.0-alpha.2",
"jspdf": "^2.5.1",
"next": "13.3.1",
"npm-run-all": "^4.1.5",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-google-recaptcha": "^3.1.0",
"react-hot-toast": "^2.4.1",
"react-infinite-scroller": "^1.2.6",
"react-markdown": "^8.0.7",
"react-media-recorder-2": "^1.6.23",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"tailwind-merge": "^1.12.0",
"tailwindcss": "3.3.1",
"typescript": "5.0.4"
},
"devDependencies": {
"@types/json2csv": "^5.0.3",
"@types/react-google-recaptcha": "^2.1.5",
"@types/react-infinite-scroller": "^1.2.3",
"husky": "^8.0.3",
"postcss-prefixer": "^3.0.0"
}
}