Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

package.json 2.1 KB

You have to be logged in to leave a comment. Sign In
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
  1. {
  2. "name": "chat-ui",
  3. "version": "0.6.0",
  4. "private": true,
  5. "packageManager": "npm@9.5.0",
  6. "scripts": {
  7. "dev": "vite dev",
  8. "build": "vite build",
  9. "preview": "vite preview",
  10. "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
  11. "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
  12. "lint": "prettier --plugin-search-dir . --check . && eslint .",
  13. "format": "prettier --plugin-search-dir . --write .",
  14. "test": "MONGODB_URL=mongodb://127.0.0.1:27017/ vitest",
  15. "updateLocalEnv": "node --loader ts-node/esm scripts/updateLocalEnv.ts",
  16. "updateProdEnv": "node --loader ts-node/esm scripts/updateProdEnv.ts"
  17. },
  18. "devDependencies": {
  19. "@iconify-json/carbon": "^1.1.16",
  20. "@iconify-json/eos-icons": "^1.1.6",
  21. "@sveltejs/adapter-node": "^1.2.4",
  22. "@sveltejs/kit": "^1.26.0",
  23. "@tailwindcss/typography": "^0.5.9",
  24. "@types/jsdom": "^21.1.1",
  25. "@types/marked": "^4.0.8",
  26. "@types/parquetjs": "^0.10.3",
  27. "@typescript-eslint/eslint-plugin": "^6.x",
  28. "@typescript-eslint/parser": "^6.x",
  29. "eslint": "^8.28.0",
  30. "eslint-config-prettier": "^8.5.0",
  31. "eslint-plugin-svelte": "^2.30.0",
  32. "marked-katex-extension": "^3.0.6",
  33. "prettier": "^2.8.0",
  34. "prettier-plugin-svelte": "^2.10.1",
  35. "prettier-plugin-tailwindcss": "^0.2.7",
  36. "svelte": "^4.0.0",
  37. "svelte-check": "^3.4.3",
  38. "ts-node": "^10.9.1",
  39. "tslib": "^2.4.1",
  40. "typescript": "^5.0.0",
  41. "unplugin-icons": "^0.16.1",
  42. "vite": "^4.3.9",
  43. "vitest": "^0.31.0"
  44. },
  45. "type": "module",
  46. "dependencies": {
  47. "@huggingface/hub": "^0.5.1",
  48. "@huggingface/inference": "^2.6.3",
  49. "@xenova/transformers": "^2.6.0",
  50. "autoprefixer": "^10.4.14",
  51. "date-fns": "^2.29.3",
  52. "dotenv": "^16.0.3",
  53. "handlebars": "^4.7.8",
  54. "highlight.js": "^11.7.0",
  55. "jsdom": "^22.0.0",
  56. "marked": "^4.3.0",
  57. "mongodb": "^5.8.0",
  58. "nanoid": "^4.0.2",
  59. "openid-client": "^5.4.2",
  60. "parquetjs": "^0.11.2",
  61. "postcss": "^8.4.31",
  62. "serpapi": "^1.1.1",
  63. "tailwind-scrollbar": "^3.0.0",
  64. "tailwindcss": "^3.3.1",
  65. "zod": "^3.22.3"
  66. },
  67. "optionalDependencies": {
  68. "aws4fetch": "^1.0.17",
  69. "openai": "^4.14.2"
  70. }
  71. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...