create-softeneers-app 0.2.3 → 0.2.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-softeneers-app",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Scaffold a new Softeneers Framework project: 5 templates (next-fullstack, express-api, hono-api, tanstack-start, minimal) with db/auth/docker toggles.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -6,6 +6,7 @@
6
6
  "scripts": {
7
7
  "dev": "nodemon index.ts",
8
8
  "build": "tsc",
9
+ "typecheck": "tsc --noEmit",
9
10
  "start": "node dist/index.js",
10
11
  "db:migrate": "sequelize-cli db:migrate --config config/config.cjs",
11
12
  "db:seed": "sequelize-cli db:seed:all --config config/config.cjs",
@@ -5,6 +5,7 @@
5
5
  "scripts": {
6
6
  "dev": "next dev",
7
7
  "build": "next build",
8
+ "typecheck": "tsc --noEmit",
8
9
  "start": "next start",
9
10
  "lint": "eslint"
10
11
  },
@@ -15,6 +15,7 @@
15
15
  "dev": "turbo run dev",
16
16
  "build": "turbo run build",
17
17
  "lint": "turbo run lint",
18
+ "typecheck": "turbo run typecheck",
18
19
  "db:migrate": "turbo run db:migrate",
19
20
  "db:seed": "turbo run db:seed",
20
21
  "db:reset": "turbo run db:reset"
@@ -10,6 +10,9 @@
10
10
  "persistent": true
11
11
  },
12
12
  "lint": {},
13
+ "typecheck": {
14
+ "dependsOn": ["build"]
15
+ },
13
16
  "db:migrate": { "cache": false },
14
17
  "db:seed": { "cache": false },
15
18
  "db:reset": { "cache": false }