-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.58 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ng-eat-me",
"version": "0.0.0",
"author": "Jean-Pierre Gladu",
"scripts": {
"ng": "ng",
"start": "ng serve",
"local": "ng serve --configuration=local",
"serve:prod": "http-server -p 8080 -c-1 dist/ng-eat-me",
"serve:fr": "http-server -p 8081 -c-1 dist/ng-eat-me-fr",
"build": "ng build",
"build:prod": "ng build --prod",
"build:fr": "ng build --configuration=fr",
"deploy:en": "firebase deploy --only hosting:english",
"deploy:fr": "firebase deploy --only hosting:french",
"test": "ng test",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"e2e": "ng e2e",
"analyze": "npx webpack-bundle-analyzer dist/ng-eat-me/stats-es5.json",
"i18n:extract": "ng xi18n --i18n-format xlf --output-path src/locales --i18n-locale en && ng run ng-eat-me:xliffmerge && rimraf src/locales/messages.xlf"
},
"private": true,
"dependencies": {
"@agm/core": "^1.1.0",
"@angular/animations": "^8.2.14",
"@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/fire": "^5.2.3",
"@angular/flex-layout": "^8.0.0-beta.27",
"@angular/forms": "^8.2.14",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/pwa": "^0.802.2",
"@angular/router": "^8.2.14",
"@angular/service-worker": "~8.1.2",
"firebase": "^6.6.2",
"firebaseui": "^4.3.0",
"hammerjs": "^2.0.8",
"luxon": "^1.21.3",
"ngx-auth-firebaseui": "^3.4.2",
"ngx-material-timepicker": "^4.0.2",
"rxjs": "^6.5.3",
"tslib": "^1.9.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.801.3",
"@angular/cli": "^8.3.20",
"@angular/compiler-cli": "^8.2.14",
"@angular/language-service": "^8.2.14",
"@ngx-i18nsupport/ngx-i18nsupport": "^1.1.6",
"@ngx-i18nsupport/tooling": "^8.0.3",
"@types/googlemaps": "^3.38.1",
"@types/jasmine": "^3.5.0",
"@types/jasminewd2": "^2.0.8",
"@types/luxon": "^1.21.0",
"@types/node": "~8.9.4",
"codelyzer": "^5.2.0",
"http-server": "^0.12.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"protractor": "~5.4.0",
"rimraf": "^3.0.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.4.3",
"webpack-bundle-analyser": "^1.4.0"
}
}