forked from trungvose/jira-clone-angular
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
37 lines (37 loc) · 1.31 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
{
"name": "jira-clone-angular",
"version": "1.0.0",
"description": "A simplified Jira clone built with Angular 9 and Akita",
"scripts": {
"install-dependencies": "npm run install-dependencies-front && npm run install-dependencies-back",
"install-dependencies-front": "cd frontend && npm i",
"install-dependencies-back": "cd backend && npm i",
"start:front": "npm run install-dependencies-front && cd frontend && npm start",
"build:front": "cd frontend && npm run build",
"start:back": "npm run install-dependencies-back && cd backend && npm run start:dev",
"build:back": "cd backend && npm run build",
"build": "npm run install-dependencies && npm run build:back && npm run build:front",
"heroku-postbuild": "npm run install-dependencies-back && npm run build:back",
"netlify-build": "npm run install-dependencies-front && npm run build:front"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trungk18/jira-clone-angular.git"
},
"keywords": [
"angular",
"akita",
"jira-clone",
"tailwind",
"typescript"
],
"author": "Trung Vo",
"license": "MIT",
"bugs": {
"url": "https://github.com/trungk18/jira-clone-angular/issues"
},
"homepage": "https://github.com/trungk18/jira-clone-angular#readme",
"engines": {
"node": "12.x"
}
}