File tree Expand file tree Collapse file tree
packages/create-awesome-node-app Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 "storybook" : " turbo run storybook" ,
1818 "test" : " turbo run test" ,
1919 "test:all" : " tsx --test \" packages/**/tests/**/*.test.mts\" " ,
20- "test:coverage" : " COVERAGE=1 c8 --extension .ts --include 'packages/**/src/**/*.ts' --exclude 'packages/**/dist/**' --reporter=text --reporter=lcov --branches 59 --functions 60 --lines 60 --statements 60 tsx --test \" packages/**/tests/**/*.test.mts\" " ,
20+ "test:coverage" : " npm run build && COVERAGE=1 c8 --extension .ts --include 'packages/**/src/**/*.ts' --exclude 'packages/**/dist/**' --reporter=text --reporter=lcov --branches 59 --functions 60 --lines 60 --statements 60 tsx --test \" packages/**/tests/**/*.test.mts\" " ,
2121 "type-check" : " turbo run type-check"
2222 },
2323 "devDependencies" : {
Original file line number Diff line number Diff line change @@ -101,8 +101,8 @@ create-awesome-node-app --template react-vite-boilerplate --list-addons
101101
102102## 🧱 Template Ecosystem
103103
104- | Category | Example Templates |
105- | ---------------- | ----------------------------------------------------------------- |
104+ | Category | Example Templates |
105+ | --------------- | ----------------------------------------------------------------- |
106106| 🖥 Frontend | `react-vite-boilerplate` — React 18 + Vite + TS + ESLint + Vitest |
107107| 🔧 Backend | `nestjs-boilerplate` — NestJS + TS + ESLint + Jest |
108108| 🌐 Full Stack | `nextjs-starter` — Next.js + SSR + TS + Prettier |
@@ -118,8 +118,8 @@ create-awesome-node-app --template react-vite-boilerplate --list-addons
118118
119119Think of addons as _lego bricks_ — snap them onto any template to add exactly what you need:
120120
121- | Category | Examples |
122- | --------------- | -------------------------------------------------------- |
121+ | Category | Examples |
122+ | -------------- | -------------------------------------------------------- |
123123| 🎨 UI Libraries | Material UI, Tailwind CSS, component libraries |
124124| 📊 State & Data | Jotai, tRPC, React Query, Zustand |
125125| 🔧 Tooling | GitHub Actions workflows, changesets, release automation |
@@ -184,7 +184,7 @@ npm create awesome-node-app@latest my-app
184184
185185## 🔍 CLI Reference
186186
187- ```
187+ ``` text
188188Usage: create-awesome-node-app [project-directory] [options]
189189```
190190
Original file line number Diff line number Diff line change 3131 "outputs" : [" dist/**" ]
3232 },
3333 "test" : {
34+ "dependsOn" : [" ^build" ],
3435 "cache" : false
3536 }
3637 }
You can’t perform that action at this time.
0 commit comments