@totaland/create-starter-kit 2.0.0 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/README.md +27 -3
  2. package/bin/index.js +88 -30
  3. package/package.json +1 -1
  4. package/templates/backend/AGENTS.md +0 -23
  5. package/templates/backend/ARCHITECTURE.md +0 -53
  6. package/templates/backend/ORDER_SYSTEM.md +0 -93
  7. package/templates/backend/biome.json +0 -3
  8. package/templates/backend/drizzle.config.ts +0 -10
  9. package/templates/backend/knip.json +0 -10
  10. package/templates/backend/package.json +0 -55
  11. package/templates/backend/playwright.config.ts +0 -16
  12. package/templates/backend/pnpm-workspace.yaml +0 -3
  13. package/templates/backend/src/features/health/controller.ts +0 -5
  14. package/templates/backend/src/features/health/index.ts +0 -6
  15. package/templates/backend/src/features/orders/controller.ts +0 -13
  16. package/templates/backend/src/features/orders/index.ts +0 -7
  17. package/templates/backend/src/index.ts +0 -76
  18. package/templates/backend/tsconfig.build.json +0 -10
  19. package/templates/backend/tsconfig.json +0 -30
  20. package/templates/backend/vitest.config.ts +0 -24
  21. package/templates/frontend/.env.example +0 -7
  22. package/templates/frontend/README.md +0 -132
  23. package/templates/frontend/RECOMMENDED_LIBRARIES.md +0 -226
  24. package/templates/frontend/SETUP_SUMMARY.md +0 -162
  25. package/templates/frontend/biome.json +0 -47
  26. package/templates/frontend/components.json +0 -22
  27. package/templates/frontend/index.html +0 -13
  28. package/templates/frontend/package.json +0 -44
  29. package/templates/frontend/postcss.config.js +0 -6
  30. package/templates/frontend/public/vite.svg +0 -1
  31. package/templates/frontend/src/App.css +0 -42
  32. package/templates/frontend/src/App.tsx +0 -17
  33. package/templates/frontend/src/assets/react.svg +0 -1
  34. package/templates/frontend/src/components/layout/Layout.tsx +0 -31
  35. package/templates/frontend/src/components/menu-toggle-icon.tsx +0 -53
  36. package/templates/frontend/src/components/ui/button.tsx +0 -57
  37. package/templates/frontend/src/hooks/use-scroll.ts +0 -21
  38. package/templates/frontend/src/index.css +0 -121
  39. package/templates/frontend/src/lib/api-client.ts +0 -46
  40. package/templates/frontend/src/lib/utils.ts +0 -6
  41. package/templates/frontend/src/main.tsx +0 -30
  42. package/templates/frontend/src/pages/about/AboutPage.tsx +0 -50
  43. package/templates/frontend/src/pages/home/HomePage.tsx +0 -43
  44. package/templates/frontend/tailwind.config.js +0 -59
  45. package/templates/frontend/tsconfig.app.json +0 -41
  46. package/templates/frontend/tsconfig.json +0 -13
  47. package/templates/frontend/tsconfig.node.json +0 -26
  48. package/templates/frontend/vite.config.ts +0 -14
@@ -1,41 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4
- "target": "ES2022",
5
- "useDefineForClassFields": true,
6
- "lib": [
7
- "ES2022",
8
- "DOM",
9
- "DOM.Iterable"
10
- ],
11
- "module": "ESNext",
12
- "types": [
13
- "vite/client"
14
- ],
15
- "skipLibCheck": true,
16
- /* Bundler mode */
17
- "moduleResolution": "bundler",
18
- "allowImportingTsExtensions": true,
19
- "verbatimModuleSyntax": true,
20
- "moduleDetection": "force",
21
- "noEmit": true,
22
- "jsx": "react-jsx",
23
- /* Linting */
24
- "strict": true,
25
- "noUnusedLocals": true,
26
- "noUnusedParameters": true,
27
- "erasableSyntaxOnly": true,
28
- "noFallthroughCasesInSwitch": true,
29
- "noUncheckedSideEffectImports": true,
30
- /* Path Aliases */
31
- "baseUrl": ".",
32
- "paths": {
33
- "@/*": [
34
- "./src/*"
35
- ]
36
- }
37
- },
38
- "include": [
39
- "src"
40
- ]
41
- }
@@ -1,13 +0,0 @@
1
- {
2
- "files": [],
3
- "references": [
4
- { "path": "./tsconfig.app.json" },
5
- { "path": "./tsconfig.node.json" }
6
- ],
7
- "compilerOptions": {
8
- "baseUrl": ".",
9
- "paths": {
10
- "@/*": ["./src/*"]
11
- }
12
- }
13
- }
@@ -1,26 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4
- "target": "ES2023",
5
- "lib": ["ES2023"],
6
- "module": "ESNext",
7
- "types": ["node"],
8
- "skipLibCheck": true,
9
-
10
- /* Bundler mode */
11
- "moduleResolution": "bundler",
12
- "allowImportingTsExtensions": true,
13
- "verbatimModuleSyntax": true,
14
- "moduleDetection": "force",
15
- "noEmit": true,
16
-
17
- /* Linting */
18
- "strict": true,
19
- "noUnusedLocals": true,
20
- "noUnusedParameters": true,
21
- "erasableSyntaxOnly": true,
22
- "noFallthroughCasesInSwitch": true,
23
- "noUncheckedSideEffectImports": true
24
- },
25
- "include": ["vite.config.ts"]
26
- }
@@ -1,14 +0,0 @@
1
- import path from 'node:path';
2
- import tailwindcss from "@tailwindcss/vite"
3
- import react from '@vitejs/plugin-react-swc';
4
- import { defineConfig } from 'vite';
5
-
6
- // https://vite.dev/config/
7
- export default defineConfig({
8
- plugins: [react(), tailwindcss()],
9
- resolve: {
10
- alias: {
11
- '@': path.resolve(__dirname, './src'),
12
- },
13
- },
14
- });