-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.5 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
{
"name": "whisper",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite src/client",
"build": "tsc && vite build",
"preview": "vite preview",
"embed": "ts-node --project tsconfig.node.json --esm src/scripts/buildEmbeddings.ts",
"populate": "ts-node --project tsconfig.node.json --esm src/scripts/populateIndexNamespace.ts",
"d3lete": "ts-node --project tsconfig.node.json --esm src/scripts/deleteIndex.ts",
"testq": "ts-node --project tsconfig.node.json --esm src/npcs/Bartender/testQueries.ts",
"serve": "ts-node --project tsconfig.node.json --esm ./src/server/app.ts",
"zip": "git archive --format=zip --output /Users/michaelsilveira/Desktop/whisper.zip master"
},
"dependencies": {
"@pinecone-database/pinecone": "^0.0.12",
"axios": "^1.3.4",
"chromadb": "^1.3.1",
"fastify": "^4.15.0",
"framer-motion": "^10.11.2",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use-localstorage": "^3.5.3",
"socket-io": "^1.0.0",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"styled-components": "^5.3.9",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.1",
"@vitejs/plugin-react": "^3.1.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.2.0"
}
}