Skip to content

Commit 4d6f94e

Browse files
committed
Initial commit.
1 parent 30d49d2 commit 4d6f94e

446 files changed

Lines changed: 31811 additions & 154 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.angular-cli.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@
1919
"testTsconfig": "tsconfig.spec.json",
2020
"prefix": "app",
2121
"styles": [
22-
"styles.scss"
22+
"styles.scss",
23+
"../node_modules/primeng/resources/themes/omega/theme.css",
24+
"../node_modules/font-awesome/css/font-awesome.min.css",
25+
"../node_modules/primeng/resources/primeng.min.css",
26+
"../node_modules/ng-busy/src/style/busy.css"
2327
],
2428
"scripts": [],
2529
"environmentSource": "environments/environment.ts",
@@ -55,6 +59,9 @@
5559
},
5660
"defaults": {
5761
"styleExt": "scss",
58-
"component": {}
62+
"component": {},
63+
"serve": {
64+
"port": 8080
65+
}
5966
}
6067
}

LICENSE.md

Lines changed: 838 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# SvcNg
1+
# Sky View Café
22

33
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.6.7.
44

55
## Development server
66

7-
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
7+
Run `ng serve` for a dev server. Navigate to `http://localhost:8080/`. The app will automatically reload if you change any of the source files.
88

99
## Code scaffolding
1010

e2e/app.e2e-spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ describe('svc-ng App', () => {
77
page = new AppPage();
88
});
99

10-
it('should display welcome message', () => {
10+
it('should be able to navigate to the main page', () => {
1111
page.navigateTo();
12-
expect(page.getParagraphText()).toEqual('Welcome to app!');
1312
});
1413
});

e2e/app.po.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
import { browser, by, element } from 'protractor';
22

33
export class AppPage {
4+
/* tslint:disable */
45
navigateTo() {
56
return browser.get('/');
67
}
7-
8-
getParagraphText() {
9-
return element(by.css('app-root h1')).getText();
10-
}
118
}

package-lock.json

Lines changed: 54 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "svc-ng",
3-
"version": "0.0.0",
4-
"license": "MIT",
3+
"version": "1.3.12",
4+
"license": "MIT / GPL / other",
55
"scripts": {
66
"ng": "ng",
77
"start": "ng serve",
@@ -12,26 +12,33 @@
1212
},
1313
"private": true,
1414
"dependencies": {
15-
"@angular/animations": "^5.2.0",
16-
"@angular/common": "^5.2.0",
17-
"@angular/compiler": "^5.2.0",
18-
"@angular/core": "^5.2.0",
19-
"@angular/forms": "^5.2.0",
20-
"@angular/http": "^5.2.0",
21-
"@angular/platform-browser": "^5.2.0",
22-
"@angular/platform-browser-dynamic": "^5.2.0",
23-
"@angular/router": "^5.2.0",
15+
"@angular/animations": "^5.2.3",
16+
"@angular/common": "^5.2.3",
17+
"@angular/compiler": "^5.2.3",
18+
"@angular/core": "^5.2.3",
19+
"@angular/flex-layout": "2.0.0-beta.10-4905443",
20+
"@angular/forms": "^5.2.3",
21+
"@angular/http": "^5.2.3",
22+
"@angular/platform-browser": "^5.2.3",
23+
"@angular/platform-browser-dynamic": "^5.2.3",
24+
"@angular/router": "^5.2.3",
2425
"core-js": "^2.4.1",
26+
"font-awesome": "^4.7.0",
27+
"lodash": "^4.17.5",
28+
"ng-busy": "^1.4.4",
29+
"primeng": "^5.2.0",
2530
"rxjs": "^5.5.6",
2631
"zone.js": "^0.8.19"
2732
},
2833
"devDependencies": {
29-
"@angular/cli": "1.6.7",
30-
"@angular/compiler-cli": "^5.2.0",
31-
"@angular/language-service": "^5.2.0",
34+
"@angular/cli": "^1.6.7",
35+
"@angular/compiler-cli": "^5.2.3",
36+
"@angular/language-service": "^5.2.3",
37+
"@types/googlemaps": "^3.30.5",
3238
"@types/jasmine": "~2.8.3",
3339
"@types/jasminewd2": "~2.0.2",
34-
"@types/node": "~6.0.60",
40+
"@types/lodash": "^4.14.101",
41+
"@types/node": "^6.0.97",
3542
"codelyzer": "^4.0.1",
3643
"jasmine-core": "~2.8.0",
3744
"jasmine-spec-reporter": "~4.2.1",

0 commit comments

Comments
 (0)