This repository has been archived by the owner on Sep 6, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
93 lines (93 loc) · 3.46 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "angular-lab",
"version": "0.0.0",
"description": "Angular Laboratory",
"keywords": [
"angular 4+",
"angular 4+ seed",
"angular 4+ demo app",
"angular 4+ example",
"angular"
],
"homepage": "https://angular-lab.rolandgroza.io",
"license": "MIT",
"author": {
"name": "Roland Groza",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/rolandjitsu/angular-lab.git"
},
"scripts": {
"ng": "ng",
"start": "ng serve --open",
"start:prod": "ng serve --open --environment=prod",
"build": "ng build --sourcemaps --output-hashing=all",
"build:prod": "ng build --no-progress --target=production --environment=prod --output-hashing=all",
"lint": "ng lint --type-check --format stylish",
"lint:fix": "ng lint --type-check --fix --format stylish",
"test": "ng test --single-run --code-coverage --sourcemaps=false --browsers CHROME_HEADLESS",
"test:continuous": "ng test --sourcemaps=false --browsers CHROME_HEADLESS",
"test:ci": "ng test --single-run --code-coverage --sourcemaps=false --no-progress --browsers SL_CHROME,SL_SAFARI10,SL_FIREFOX,SL_EDGE,SL_ANDROID7",
"e2e": "ng e2e --no-watch ---no-live-reload --port 4224",
"e2e:ci": "ng e2e --no-progress --no-live-reload --no-watch --target=production --environment=prod --port 4224",
"predeploy": "npm run secrets:eject",
"deploy": "npm run build:prod && firebase deploy --token ${FIREBASE_TOKEN}",
"deploy:ci": "npm run build:prod && scripts/ci/deploy.sh",
"secrets:eject": "./scripts/secrets.sh"
},
"dependencies": {
"@angular/animations": "^4.4.6",
"@angular/cdk": "2.0.0-beta.12",
"@angular/common": "^4.4.6",
"@angular/compiler": "^4.4.6",
"@angular/core": "^4.4.6",
"@angular/flex-layout": "2.0.0-beta.9",
"@angular/forms": "^4.4.6",
"@angular/http": "^4.4.6",
"@angular/material": "2.0.0-beta.12",
"@angular/platform-browser": "^4.4.6",
"@angular/platform-browser-dynamic": "^4.4.6",
"@angular/router": "^4.4.6",
"angularfire2": "5.0.0-rc.3",
"core-js": "^2.5.1",
"firebase": "^4.6.0",
"hammerjs": "^2.0.8",
"intl": "^1.2.5",
"normalize.css": "^7.0.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.0",
"tslib": "^1.8.0",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@angular/cli": "^1.4.9",
"@angular/compiler-cli": "^4.4.6",
"@angular/tsc-wrapped": "^4.4.6",
"@types/hammerjs": "^2.0.35",
"@types/jasmine": "^2.6.0",
"@types/jasmine-expect": "^3.6.1",
"@types/node": "^8.0.46",
"codelyzer": "^3.2.1",
"firebase-tools": "^3.13.1",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"jasmine-expect": "^3.7.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-sauce-launcher": "^1.2.0",
"protractor": "^5.2.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3"
},
"engines": {
"node": ">= 7.9"
}
}