-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "task-manager",
"version": "1.0.0",
"description": "Fullstack Task Manager Application",
"private": true,
"scripts": {
"start": "node backend/src/server.js",
"backend": "cd backend && npm run dev",
"frontend": "cd frontend && npm run dev",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"build": "cd frontend && npm run build",
"install-all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"test": "cd backend && npm test",
"debug:api": "curl -v http://localhost:5000/api/auth/test || echo 'Erro: Backend não respondeu'",
"debug:env": "echo \"VITE_API_URL=$VITE_API_URL\" && echo \"Process Env: \" && node -e \"console.log(process.env)\""
},
"workspaces": [
"backend",
"frontend"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@heroicons/react": "^2.2.0",
"axios": "^1.11.0",
"concurrently": "^8.2.2",
"date-fns": "^4.1.0",
"pg": "^8.16.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.7.1",
"react-toastify": "^11.0.5",
"task-manager": "file:"
},
"devDependencies": {
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11"
}
}