forked from nano-react-app/template-js
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.18 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.18 KB
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
{
"name": "llm-react-app-template",
"version": "0.0.4",
"description": "a react app with a large language model",
"license": "MIT",
"type": "module",
"scripts": {
"start": "vite",
"preview": "vite preview",
"build": "vite build",
"start-server": "nodemon ./server/index.js"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@huggingface/inference": "^2.5.0",
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.2",
"axios": "^1.4.0",
"d3-dsv": "2",
"dotenv": "^16.0.3",
"hnswlib-node": "^1.4.2",
"koa": "^2.14.2",
"koa-body": "^6.0.1",
"koa-cors": "^0.0.16",
"koa-logger": "^3.2.1",
"langchain": "^0.0.84",
"nodemon": "^2.0.22",
"pdf-parse": "^1.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"babel-preset-nano-react-app": "^0.1.0",
"vite": "^4.3.9"
},
"babel": {
"presets": [
"nano-react-app"
]
}
}