-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
26 lines (26 loc) · 907 Bytes
/
package.json
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
{
"name": "kanban-project-management",
"version": "2.0.0",
"description": "",
"scripts": {
"install:frontend": "cd frontend && npm i",
"install:backend": "cd backend && npm i",
"install:all": "npm run install:frontend && npm run install:backend",
"seed:database": "cd backend && npm run seed",
"start:frontend": "cd frontend && npm start",
"build:frontend": "cd frontend && npm run build",
"start:backend": "cd backend && npm run start:dev",
"start:backend:prod": "cd backend && npm run start:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sldiaz04us/kanban-project-management.git"
},
"keywords": [],
"author": "Sergio Lopez Diaz",
"license": "MIT",
"bugs": {
"url": "https://github.com/sldiaz04us/kanban-project-management/issues"
},
"homepage": "https://github.com/sldiaz04us/kanban-project-management#readme"
}