-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.58 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn copy-rui && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --ignore-path .gitignore --write \"**/*.{js,ts,tsx}\"",
"copy-rui": "cp index.js node_modules/",
"setup": "yarn && node server/script/initializeStore && yarn copy-rui && yarn format"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@react-aria/button": "^3.6.4",
"@react-aria/focus": "^3.8.0",
"@react-aria/menu": "^3.6.1",
"@react-aria/overlays": "^3.10.1",
"@react-aria/ssr": "^3.4.1",
"@react-aria/tooltip": "^3.3.1",
"@react-aria/utils": "^3.13.3",
"@react-aria/visually-hidden": "^3.4.1",
"autosize": "^6.0.1",
"better-replit-db": "^1.1.9",
"chroma-js": "^2.4.2",
"date-fns": "^2.29.3",
"express-rate-limit": "^6.7.0",
"glob": "^8.1.0",
"highlight.js": "^11.7.0",
"hnswlib-node": "^1.3.0",
"jotai": "^2.0.2",
"langchain": "^0.0.11",
"marked": "^4.2.12",
"mongoose": "^6.9.2",
"next": "13.1.6",
"next-connect": "^0.13.0",
"node-fetch": "2.6.7",
"openai": "^3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sanitize-html": "^2.9.0",
"sass": "^1.58.2"
},
"devDependencies": {
"@types/marked": "^4.0.8",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/sanitize-html": "^2.8.0",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"prettier": "^2.7.1",
"typescript": "4.9.5"
}
}