|
1 | 1 | {
|
2 | 2 | "name": "jira-clone-angular",
|
3 |
| - "version": "1.0.0", |
| 3 | + "version": "0.0.1", |
4 | 4 | "description": "A simplified Jira clone built with Angular 9 and Akita",
|
5 | 5 | "scripts": {
|
6 |
| - "install-dependencies": "npm i && cd frontend && npm i", |
| 6 | + "install-dependencies": "npm run install-dependencies-front && npm run install-dependencies-back", |
| 7 | + "install-dependencies-front": "cd frontend && npm i", |
| 8 | + "install-dependencies-back": "cd backend && npm i", |
7 | 9 | "start:front": "cd frontend && npm start",
|
8 | 10 | "build:front": "cd frontend && npm run build",
|
9 |
| - "test:front": "cd frontend && npm run test", |
10 |
| - "start": "npm run start:front", |
11 |
| - "build": "npm run install-dependencies && npm run build:front" |
| 11 | + "start:back": "cd backend && npm start", |
| 12 | + "build:back": "cd backend && npm run build", |
| 13 | + "start": "npm run start:back && npm run start:front", |
| 14 | + "build": "npm run install-dependencies && npm run build:back && npm run build:front", |
| 15 | + "heroku-postbuild": "npm run install-dependencies-back && npm run build:back" |
12 | 16 | },
|
13 | 17 | "repository": {
|
14 | 18 | "type": "git",
|
|
26 | 30 | "bugs": {
|
27 | 31 | "url": "https://github.com/trungk18/jira-clone-angular/issues"
|
28 | 32 | },
|
29 |
| - "homepage": "https://github.com/trungk18/jira-clone-angular#readme" |
| 33 | + "homepage": "https://github.com/trungk18/jira-clone-angular#readme", |
| 34 | + "engines": { |
| 35 | + "node": "12.x" |
| 36 | + } |
30 | 37 | }
|
0 commit comments