-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.75 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.75 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
45
46
47
48
49
50
51
52
53
{
"name": "ai-ml-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"start": "nodemon --exec node --no-warnings=ExperimentalWarning --loader ts-node/esm ./server/server.ts & npm run dev",
"server": "nodemon --exec node --no-warnings=ExperimentalWarning --loader ts-node/esm ./server/server.ts",
"test": "jest",
"upsert-batch": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./offline/upsert-batch.ts",
"embed": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./offline/buildEmbedding.ts",
"zodiacInfo": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./offline/buildDatesAndTraits.ts"
},
"dependencies": {
"@pinecone-database/pinecone": "^6.1.2",
"@tailwindcss/vite": "^4.1.11",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"jest": "^30.0.5",
"mongoose": "^8.17.1",
"openai": "^5.12.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"supertest": "^7.1.4",
"tailwindcss": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.17.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/supertest": "^6.0.2",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"nodemon": "^3.1.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2"
}
}