Skip to content

Commit 64d3716

Browse files
fix: setup monorepo
1 parent e92637d commit 64d3716

27 files changed

Lines changed: 4591 additions & 4481 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ dist-ssr
2222
*.njsproj
2323
*.sln
2424
*.sw?
25+
.claude
26+
.turbo

package.json

Lines changed: 11 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,17 @@
11
{
2-
"name": "quick-search",
3-
"private": true,
4-
"version": "0.0.0",
5-
"type": "module",
2+
"name": "instant-site-search",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
66
"scripts": {
7-
"dev": "vite",
8-
"build": "vite build",
9-
"lint": "eslint .",
10-
"preview": "vite preview"
11-
},
12-
"dependencies": {
13-
"@ai-sdk/react": "^2.0.4",
14-
"ai": "^5.0.30",
15-
"algoliasearch": "4",
16-
"react": "^19.1.1",
17-
"react-dom": "^19.1.1",
18-
"react-instantsearch": "7.16.2",
19-
"streamdown": "^1.2.0"
7+
"dev": "turbo dev",
8+
"build": "turbo build"
209
},
10+
"keywords": [],
11+
"author": "",
12+
"license": "ISC",
13+
"packageManager": "pnpm@10.13.1",
2114
"devDependencies": {
22-
"@eslint/js": "^9.33.0",
23-
"@types/react": "^19.1.10",
24-
"@types/react-dom": "^19.1.7",
25-
"@vitejs/plugin-react": "^5.0.0",
26-
"eslint": "^9.33.0",
27-
"eslint-plugin-react-hooks": "^5.2.0",
28-
"eslint-plugin-react-refresh": "^0.4.20",
29-
"globals": "^16.3.0",
30-
"vite": "^7.1.2"
15+
"turbo": "^2.5.6"
3116
}
3217
}
File renamed without changes.

index.html renamed to packages/search-react/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8" />
66
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>Quick Search</title>
8+
<title>Instant Site Search</title>
99
</head>
1010

1111
<body>

packages/search-react/package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "search-experience",
3+
"private": true,
4+
"version": "0.0.0",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "vite build",
9+
"lint": "eslint .",
10+
"preview": "vite preview"
11+
},
12+
"dependencies": {
13+
"@ai-sdk/react": "^2.0.4",
14+
"ai": "^5.0.30",
15+
"algoliasearch": "4",
16+
"react": "^19.1.1",
17+
"react-dom": "^19.1.1",
18+
"react-instantsearch": "7.16.2",
19+
"streamdown": "^1.2.0"
20+
},
21+
"devDependencies": {
22+
"@eslint/js": "^9.33.0",
23+
"@types/react": "^19.1.10",
24+
"@types/react-dom": "^19.1.7",
25+
"@vitejs/plugin-react": "^5.0.0",
26+
"eslint": "^9.33.0",
27+
"eslint-plugin-react-hooks": "^5.2.0",
28+
"eslint-plugin-react-refresh": "^0.4.20",
29+
"globals": "^16.3.0",
30+
"vite": "^7.1.2"
31+
}
32+
}

0 commit comments

Comments
 (0)