-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.18 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
{
"name": "chatty",
"productName": "Chatty",
"version": "1.6.4",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rm -rf node_modules && rm -rf build",
"dev": "next dev",
"build": "next build",
"start": "next start -H 0.0.0.0 -p ${PORT:-8080}",
"start-local": "next start",
"lint": "next lint",
"format": "prettier --write .",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"engines": {
"node": "20.18.0",
"npm": "10.8.2"
},
"dependencies": {
"@microsoft/applicationinsights-react-js": "^17.3.0",
"@microsoft/applicationinsights-web": "^3.3.0",
"@tabler/icons-react": "^2.47.0",
"ai": "^2.2.37",
"html-to-image": "^1.11.11",
"i18next": "^23.11.5",
"js-tiktoken": "1.0.7",
"next": "14.2.10",
"next-i18next": "^14.0.3",
"next-themes": "^0.2.1",
"openai": "^4.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-i18next": "^13.5.0",
"react-markdown": "^8.0.7",
"react-query": "^3.39.3",
"react-syntax-highlighter": "^15.5.0",
"rehype-mathjax": "^4.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@mozilla/readability": "^0.4.4",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.19",
"endent": "^2.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^13.5.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^22.1.0",
"next-router-mock": "^0.9.13",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.4",
"ts-jest": "^29.1.5",
"typescript": "^5.5.3"
}
}