Skip to content

Commit 85b21ec

Browse files
authored
Add Empty Nebula project shell (#7357)
1 parent 508b4c4 commit 85b21ec

File tree

6 files changed

+673
-20
lines changed

6 files changed

+673
-20
lines changed

apps/nebula/next-env.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/image-types/global" />
3+
4+
// NOTE: This file should not be edited
5+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

apps/nebula/package.json

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
{
2+
"name": "nebula",
3+
"version": "0.0.1",
4+
"private": true,
5+
"scripts": {
6+
"preinstall": "npx only-allow pnpm",
7+
"dev": "next dev --turbopack",
8+
"build": "NODE_OPTIONS=--max-old-space-size=6144 next build",
9+
"start": "next start",
10+
"fix": "biome check ./src --fix && eslint ./src --fix",
11+
"typecheck": "tsc --noEmit",
12+
"build:analyze": "ANALYZE=true pnpm run build",
13+
"knip": "knip",
14+
"storybook": "storybook dev -p 6006",
15+
"build-storybook": "storybook build"
16+
},
17+
"dependencies": {
18+
"@hookform/resolvers": "^3.9.1",
19+
"@marsidev/react-turnstile": "^1.1.0",
20+
"@radix-ui/react-avatar": "^1.1.10",
21+
"@radix-ui/react-dialog": "1.1.14",
22+
"@radix-ui/react-hover-card": "^1.1.14",
23+
"@radix-ui/react-label": "^2.1.7",
24+
"@radix-ui/react-popover": "^1.1.14",
25+
"@radix-ui/react-select": "^2.2.5",
26+
"@radix-ui/react-separator": "^1.1.7",
27+
"@radix-ui/react-slot": "^1.2.3",
28+
"@radix-ui/react-switch": "^1.2.5",
29+
"@radix-ui/react-tooltip": "1.2.7",
30+
"@tanstack/react-query": "5.80.7",
31+
"@vercel/functions": "2.1.0",
32+
"class-variance-authority": "^0.7.1",
33+
"clsx": "^2.1.1",
34+
"date-fns": "4.1.0",
35+
"fetch-event-stream": "0.1.5",
36+
"fuse.js": "7.1.0",
37+
"lucide-react": "0.514.0",
38+
"next": "15.3.3",
39+
"next-themes": "^0.4.6",
40+
"nextjs-toploader": "^1.6.12",
41+
"prettier": "3.5.3",
42+
"react": "19.1.0",
43+
"react-children-utilities": "^2.10.0",
44+
"react-dom": "19.1.0",
45+
"react-hook-form": "7.55.0",
46+
"react-markdown": "10.1.0",
47+
"remark-gfm": "4.0.1",
48+
"server-only": "^0.0.1",
49+
"shiki": "1.27.0",
50+
"sonner": "2.0.5",
51+
"tailwind-merge": "^2.6.0",
52+
"tailwindcss-animate": "^1.0.7",
53+
"thirdweb": "workspace:*",
54+
"zod": "3.25.62"
55+
},
56+
"devDependencies": {
57+
"@chromatic-com/storybook": "4.0.0",
58+
"@next/eslint-plugin-next": "15.3.3",
59+
"@storybook/addon-docs": "9.0.8",
60+
"@storybook/addon-links": "9.0.8",
61+
"@storybook/addon-onboarding": "9.0.8",
62+
"@storybook/nextjs": "9.0.8",
63+
"@types/node": "22.14.1",
64+
"@types/react": "19.1.8",
65+
"@types/react-dom": "19.1.6",
66+
"@typescript-eslint/eslint-plugin": "7.14.1",
67+
"@typescript-eslint/parser": "7.14.1",
68+
"autoprefixer": "^10.4.21",
69+
"eslint": "8.57.0",
70+
"eslint-config-biome": "1.9.4",
71+
"eslint-plugin-react-compiler": "19.1.0-rc.2",
72+
"eslint-plugin-storybook": "9.0.8",
73+
"knip": "5.60.2",
74+
"next-sitemap": "^4.2.3",
75+
"postcss": "8.5.5",
76+
"storybook": "9.0.8",
77+
"tailwindcss": "3.4.17",
78+
"typescript": "5.8.3"
79+
}
80+
}

apps/nebula/src/app/layout.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
export default function Layout(props: {
2+
children: React.ReactNode;
3+
}) {
4+
return (
5+
<html lang="en" suppressHydrationWarning>
6+
<head>
7+
<link rel="icon" href="/favicon.ico" />
8+
</head>
9+
<body>{props.children}</body>
10+
</html>
11+
);
12+
}

apps/nebula/src/app/page.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function Page() {
2+
return <div> Test </div>;
3+
}

apps/nebula/tsconfig.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2017",
4+
"lib": [
5+
"dom",
6+
"dom.iterable",
7+
"esnext"
8+
],
9+
"allowJs": true,
10+
"skipLibCheck": true,
11+
"strict": false,
12+
"noEmit": true,
13+
"incremental": true,
14+
"module": "esnext",
15+
"esModuleInterop": true,
16+
"moduleResolution": "node",
17+
"resolveJsonModule": true,
18+
"isolatedModules": true,
19+
"jsx": "preserve",
20+
"plugins": [
21+
{
22+
"name": "next"
23+
}
24+
]
25+
},
26+
"include": [
27+
"next-env.d.ts",
28+
".next/types/**/*.ts",
29+
"**/*.ts",
30+
"**/*.tsx"
31+
],
32+
"exclude": [
33+
"node_modules"
34+
]
35+
}

0 commit comments

Comments
 (0)