-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 768 Bytes
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
{
"name": "morphui",
"version": "1.0.0",
"description": "An adaptive, AI-driven frontend that transforms itself based on user mood and behavior",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
"dev:frontend": "npm run dev --workspace=@morphui/frontend",
"dev:backend": "npm run dev --workspace=@morphui/backend",
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces"
},
"keywords": [
"adaptive-ui",
"ai",
"gemini",
"react",
"self-evolving",
"dynamic-ui"
],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}