PRIMEIRO ENVIO

This commit is contained in:
2025-12-25 12:02:07 -03:00
parent ca49575224
commit c4d3bd9a86
92 changed files with 26976 additions and 1 deletions
+38
View File
@@ -0,0 +1,38 @@
{
"name": "cloneweb-platform",
"version": "1.0.0",
"description": "SaaS platform for website cloning with near 100% visual accuracy",
"private": true,
"workspaces": [
"packages/*",
"services/*",
"apps/*",
"web-interface",
"simple-crawler"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"test:property": "turbo run test:property",
"lint": "turbo run lint",
"clean": "turbo run clean",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"db:migrate": "cd services/database && npm run migrate",
"db:seed": "cd services/database && npm run seed"
},
"devDependencies": {
"turbo": "^1.10.16",
"@types/node": "^20.8.0",
"typescript": "^5.2.2",
"prettier": "^3.0.3",
"eslint": "^8.51.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}