-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 833 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 833 Bytes
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
{
"name": "project-management-app",
"version": "1.0.0",
"description": "Full-stack project management application",
"main": "index.js",
"scripts": {
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm run dev",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"start:backend": "cd backend && npm start",
"start:frontend": "cd frontend && npm start",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"build": "cd frontend && npm run build",
"test": "echo \"No tests specified yet\""
},
"keywords": [
"project-management",
"react",
"nodejs",
"postgresql",
"supabase"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}