-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.58 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
{
"name": "sentientos-ai",
"version": "1.0.0",
"description": "Emotion-aware AI operating system",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"core/*"
],
"scripts": {
"dev": "concurrently \"pnpm dev:web\" \"pnpm dev:api\"",
"dev:web": "pnpm build:core-emotionware && cd apps/web-frontend && pnpm dev",
"dev:api": "pnpm --filter ./apps/backend-api run dev",
"build": "pnpm build:core && pnpm build:packages && pnpm build:apps",
"build:core": "pnpm --filter=\"./core/*\" build",
"build:core-emotionware": "pnpm --filter=\"@sentientos-ai/core-emotionware\" build",
"build:packages": "pnpm --filter=\"./packages/*\" build",
"build:apps": "pnpm --filter=\"./apps/*\" build",
"test": "pnpm --recursive test",
"lint": "pnpm --recursive lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"clean": "pnpm --recursive clean && rm -rf node_modules",
"type-check": "pnpm --recursive type-check"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.13",
"@types/node": "^20.19.1",
"concurrently": "^8.2.2",
"eslint": "^9.29.0",
"prettier": "^3.0.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"dependencies": {
"@langchain/core": "^0.3.61",
"@langchain/groq": "^0.2.3",
"@langchain/openai": "^0.5.16",
"@supabase/auth-helpers-react": "^0.5.0",
"dotenv-cli": "^7.3.0",
"multer": "^2.0.1",
"socket.io": "^4.7.4"
}
}