Skip to content

Commit d834e53

Browse files
authored
πŸ”€ merge pull request #363 from onRuntime/antoinekm/turborepo
🚚 move from polyrepo to monorepo
2 parents 0113154 + c601c29 commit d834e53

227 files changed

Lines changed: 402 additions & 312 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

β€Ž.gitignoreβ€Ž

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
22

33
# dependencies
4-
/node_modules
4+
node_modules
55

66
# testing
7-
/coverage
7+
coverage
88

99
# next.js
10-
/.next/
11-
/out/
10+
.next/
11+
out/
1212

1313
# production
14-
/build
14+
build
15+
dist
1516

1617
# misc
1718
.DS_Store
@@ -34,8 +35,12 @@ npm-debug.log*
3435
*.tsbuildinfo
3536
next-env.d.ts
3637

37-
# public
38-
public/robots.txt
39-
public/sitemap*.xml
38+
# generated files
39+
**/public/robots.txt
40+
**/public/sitemap*.xml
4041

42+
# turbo
43+
.turbo
44+
45+
# claude
4146
.claude-files/
File renamed without changes.

β€Žapps/web/package.jsonβ€Ž

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
{
2+
"name": "@onruntime/web",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "next dev --turbopack",
7+
"build": "next build",
8+
"postbuild": "next-sitemap",
9+
"start": "next start",
10+
"type-check": "tsc --noEmit"
11+
},
12+
"dependencies": {
13+
"@hookform/resolvers": "^5.0.0",
14+
"@mdx-js/loader": "^3.1.0",
15+
"@mdx-js/react": "^3.1.0",
16+
"@next/mdx": "^16.1.1",
17+
"@radix-ui/react-accordion": "^1.2.3",
18+
"@radix-ui/react-dialog": "^1.1.6",
19+
"@radix-ui/react-navigation-menu": "^1.2.3",
20+
"@radix-ui/react-slot": "^1.1.1",
21+
"@radix-ui/react-tabs": "^1.1.2",
22+
"@radix-ui/react-toast": "^1.2.6",
23+
"@t3-oss/env-nextjs": "^0.13.0",
24+
"@types/mdx": "^2.0.13",
25+
"@vercel/og": "^0.6.4",
26+
"@vercel/speed-insights": "^1.1.0",
27+
"autoprefixer": "^10.4.20",
28+
"class-variance-authority": "^0.7.1",
29+
"clsx": "^2.1.1",
30+
"gray-matter": "^4.0.3",
31+
"lucide-react": "^0.515.0",
32+
"motion": "^12.0.0",
33+
"next": "16.1.1",
34+
"next-mdx-remote": "^5.0.0",
35+
"next-mdx-remote-client": "^2.1.1",
36+
"next-seo": "^6.6.0",
37+
"next-sitemap": "^4.2.3",
38+
"react": "^19.0.0",
39+
"react-dom": "^19.0.0",
40+
"react-hook-form": "^7.54.2",
41+
"react-wrap-balancer": "^1.1.1",
42+
"reflect-metadata": "^0.2.2",
43+
"resend": "^4.1.2",
44+
"tailwind-merge": "^3.0.0",
45+
"tailwindcss-animate": "^1.0.7",
46+
"usehooks-ts": "^3.1.1",
47+
"zod": "^3.24.2"
48+
},
49+
"devDependencies": {
50+
"@types/node": "^22.0.0",
51+
"@types/react": "^19",
52+
"@types/react-dom": "^19",
53+
"postcss": "^8.5.1",
54+
"tailwindcss": "^3.4.17",
55+
"typescript": "^5"
56+
}
57+
}
File renamed without changes.

0 commit comments

Comments
Β (0)