-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 3.22 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ped5-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4206",
"start-prod": "ng serve --configuration production",
"build": "rm -rf dist/* && ng build --configuration production --build-optimizer",
"build-dev": "rm -rf dist/* && ng build --configuration dev --build-optimizer",
"build-prod": "rm -rf dist/* && ng build --configuration production --build-optimizer",
"deploy-check": "(colR='\\033[0;91m';colC='\\033[0;36m';colN='\\033[0m'; echo ${colC}Checking repo in deploy-check...${colN}; { git diff --exit-code --stat|| { echo ${colR}There are local unstaged changes, fix with git add ...${colN} && false; }; } && { git diff --cached --exit-code --stat || { echo ${colR}There are uncommitted changes, fix with git commit ...${colN} && false; }; } && { git push --dry-run --porcelain >/dev/null|| { echo ${colR}There are remote changes, fix with git pull ...${colN} && false; }; } && { git push --dry-run --porcelain|grep -q 'up to date' || { git status; echo ${colR}There are unpublished local commits, fix with git push ...${colN} && false; }; } && { { { git remote update &>/dev/null && git status -uno; } |grep -q \"up to date\"; } || { echo ${colR}There are remote changes, fix with git pull ...${colN} && false; }; }; )",
"deploy-dev": "(colC='\\033[0;36m';colN='\\033[0m'; echo ${colC}Running npm build-dev ...${colN} && npm run build-dev && echo ${colC}Rsyncing dist ...${colN} && rsync -avh --delete dist biocomp@persefone:/var/www/ped5-dev/ && echo ${colC}Done with deploy-dev!${colC})",
"deploy-prod": " (colC='\\033[0;36m';colN='\\033[0m'; echo ${colC}Running npm build-prod ...${colN} && npm run build-prod && echo ${colC}Rsyncing dist ...${colN} && rsync -avh --delete dist biocomp@persefone:/var/www/ped5/ && echo ${colC}Done with deploy-prod!${colC})"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.2.7",
"@angular/cdk": "^11.2.12",
"@angular/common": "~12.2.7",
"@angular/compiler": "~12.2.7",
"@angular/core": "~12.2.7",
"@angular/forms": "~12.2.7",
"@angular/platform-browser": "~12.2.7",
"@angular/platform-browser-dynamic": "~12.2.7",
"@angular/router": "~12.2.7",
"@popperjs/core": "^2.9.2",
"EBI-Icon-fonts": "^1.3.1",
"angular-tree-component": "^8.5.6",
"bootstrap": "^5.0.1",
"bootstrap-icons": "^1.10.5",
"feature-viewer-typescript": "^2.3.2",
"molstar": "^2.3.3",
"ngx-bootstrap": "^6.2.0",
"ngx-matomo": "^1.0.0-rc.0",
"notiflix": "^3.2.6",
"pdbe-molstar": "^1.2.1",
"proseqviewer": "^1.0.84",
"rxjs": "~6.6.0",
"swagger-ui": "^3.52.3",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.7",
"@angular/cli": "~12.2.7",
"@angular/compiler-cli": "~12.2.7",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"protractor": "~7.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5"
}
}