-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.3 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
{
"name": "ng-cv",
"version": "0.0.0",
"scripts": {
"start": "ng serve",
"start:dev": "ng serve -c=dev",
"start:lan": "ng serve -c=dev --host 0.0.0.0",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"deploy": "ng deploy --base-href=/Angular-CV/",
"build.prod": "ng build --aot --configuration production --progress false --base-href \"https://morbargig.github.io/Angular-CV/\"",
"kill": "sudo kill -9 $(sudo lsof -t -i:4200)",
"push": "git add . && git commit -m \"`echo \"Auto commit by $(git config user.name) at $(date +%Y-%m-%dT%H:%M%z)\"`\"&& git push origin master",
"docker-kill": "docker rm --force ng-cv-container",
"docker-build": "ng build --configuration production --sourceMap && docker build -t ng-cv-image . && docker rm --force ng-cv-container && docker run --name ng-cv-container -d -p 4200:80 ng-cv-image",
"heroku": "concurrently \"set HTTPS=true&&ng serve\" \"heroku local -p 3030\"",
"noServer": "set HTTPS=true&&ng serve",
"server": "node server",
"clean": "rm -rf .angular dist node_modules package-lock.json",
"herokuPush": "git add .&&git commit -m \"automatic commit\"&&git push heroku master"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.4",
"@angular/cdk": "^15.2.4",
"@angular/common": "^15.2.4",
"@angular/compiler": "^15.2.4",
"@angular/core": "^15.2.4",
"@angular/fire": "^7.5.0",
"@angular/forms": "^15.2.4",
"@angular/platform-browser": "^15.2.4",
"@angular/platform-browser-dynamic": "^15.2.4",
"@angular/router": "^15.2.4",
"@ngx-translate/core": "^14.0.0",
"firebase": "^9.18.0",
"rxjs": "~7.8.0",
"tslib": "^2.5.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.4",
"@angular/cli": "^15.2.4",
"@angular/compiler-cli": "^15.2.4",
"@types/jasmine": "~4.3.1",
"@types/node": "^18.15.10",
"angular-cli-ghpages": "^1.0.5",
"codelyzer": "^0.0.28",
"jasmine-core": "~4.6.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"protractor": "^7.0.0",
"ts-node": "~10.9.1",
"tslint": "~6.1.0",
"typescript": "^4.8.2"
}
}