-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 886 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 886 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
29
{
"name": "serverless-task-manager",
"version": "1.0.0",
"description": "Full-stack serverless task management application with React frontend",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install-backend": "cd backend && npm install",
"install-frontend": "cd frontend && npm install",
"install-all": "npm run install-backend && npm run install-frontend",
"deploy-dev": "cd backend && serverless deploy --stage dev",
"deploy-prod": "cd backend && serverless deploy --stage prod",
"build-frontend": "cd frontend && npm run build",
"start-frontend": "cd frontend && npm start"
},
"keywords": [
"serverless",
"aws",
"react",
"dynamodb",
"cognito",
"task-management"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}