fix: actually upload package.json
All checks were successful
Build and Deploy / build-and-push (push) Successful in 41s

This commit is contained in:
Cauê Faleiros
2026-04-09 10:36:37 -03:00
parent 6e7d266a72
commit c8b24eeaea
4 changed files with 1684 additions and 4 deletions

6
.gitignore vendored
View File

@@ -1,5 +1,3 @@
.env
package.json
package-lock.json
tsconfig.json
node_modules
dist
.env

1642
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "api-tiny-n8n",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"axios": "^1.14.0",
"dotenv": "^17.4.1",
"express": "^5.2.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.5.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"rootDir": "./src",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": ["src/**/*"]
}