From fdc6c71bebfff999b2661923aee3180cb01bce7e Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Wed, 3 Sep 2025 12:30:23 +0200 Subject: [PATCH] refactor: reorganize package.json structure and update metadata --- apps/infoalloggi/package.json | 43 ++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/apps/infoalloggi/package.json b/apps/infoalloggi/package.json index 3b1d7df..792826a 100644 --- a/apps/infoalloggi/package.json +++ b/apps/infoalloggi/package.json @@ -1,7 +1,24 @@ { - "ct3aMetadata": { - "initVersion": "7.9.0" + "name": "infoalloggi", + "private": true, + "scripts": { + "build": "next build", + "d": "npm run-p dev stripe-dev -cl", + "dev": "node ./headers/dev.js && next dev --turbopack", + "dev-https": "node ./headers/dev-https.js && cross-env NEXT_PUBLIC_BASE_URL='https://localhost:3000' INTERNAL_BASE_URL='https://localhost:3000' next dev --experimental-https --turbopack", + "email": "cross-env NEXT_PUBLIC_BASE_URL='https://localhost:3000' email dev --port 3500", + "idev": "cross-env NODE_OPTIONS='--inspect' next dev --turbopack", + "knip": "knip --no-exit-code", + "lint": "node ./headers/lint.js && biome lint && node check-env-vars.js", + "pg-typegen": "node ./headers/pg-typegen.js && npx kanel", + "start": "next start", + "stripe-dev": "stripe listen --forward-to https://localhost:3000/api/stripe-webhook", + "test": "npm run lint && npm run types", + "test-kr": "node ./kyselyRules/rules/select.test.js && node ./kyselyRules/rules/where.test.js&& node ./kyselyRules/rules/null.test.js", + "types": "node ./headers/type.js && tsc --noEmit" }, + "version": "0.1.0", + "dependencies": { "@fattureincloud/fattureincloud-ts-sdk": "^2.1.1", "@hookform/resolvers": "^5.2.1", @@ -106,23 +123,7 @@ "npm-run-all": "^4.1.5", "typescript": "^5.9.2" }, - "name": "infoalloggi", - "private": true, - "scripts": { - "build": "next build", - "d": "npm run-p dev stripe-dev -cl", - "dev": "node ./headers/dev.js && next dev --turbopack", - "dev-https": "node ./headers/dev-https.js && cross-env NEXT_PUBLIC_BASE_URL='https://localhost:3000' INTERNAL_BASE_URL='https://localhost:3000' next dev --experimental-https --turbopack", - "email": "cross-env NEXT_PUBLIC_BASE_URL='https://localhost:3000' email dev --port 3500", - "idev": "cross-env NODE_OPTIONS='--inspect' next dev --turbopack", - "knip": "knip --no-exit-code", - "lint": "node ./headers/lint.js && biome lint && node check-env-vars.js", - "pg-typegen": "node ./headers/pg-typegen.js && npx kanel", - "start": "next start", - "stripe-dev": "stripe listen --forward-to https://localhost:3000/api/stripe-webhook", - "test": "npm run lint && npm run types", - "test-kr": "node ./kyselyRules/rules/select.test.js && node ./kyselyRules/rules/where.test.js&& node ./kyselyRules/rules/null.test.js", - "types": "node ./headers/type.js && tsc --noEmit" - }, - "version": "0.1.0" + "ct3aMetadata": { + "initVersion": "7.9.0" + } }