This repository has been archived by the owner on Sep 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 2.55 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
{
"name": "clean-to-the-core",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"deploy": "npm run fireDeployPrep && firebase deploy",
"docsDeploy": "npm run docs && npm run docsSend",
"docsSend": "gh-pages-deploy",
"docs": "npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' --excludeExternals ./src/app",
"e2e": "protractor",
"e2eTests": "export PROTRACTOR_ENV='local'; ng e2e",
"fireDeployPrep": "ng build --prod --aot=false && npm run sw",
"lint": "tslint \"src/**/*.ts\"",
"sassLint": "sass-lint 'src/**/*.scss' -v --max-warnings=0",
"pree2e": "webdriver-manager update; tsc --project e2e",
"minCoverage": "node ./scripts/minimum_coverage.js",
"start": "ng serve",
"static-serve": "cd dist && live-server --port=4200 --host=localhost --entry-file=/index.html",
"sw": "sw-precache --root=dist --config=sw-precache-config.js",
"test": "ng lint && npm run sassLint && ng test --watch=false --code-coverage",
"typedoc": "typedoc"
},
"gh-pages-deploy": {
"staticpath": "dist"
},
"private": true,
"dependencies": {
"@angular/common": "2.3.1",
"@angular/compiler": "2.3.1",
"@angular/core": "2.3.1",
"@angular/forms": "2.3.1",
"@angular/http": "2.3.1",
"@angular/platform-browser": "2.3.1",
"@angular/platform-browser-dynamic": "2.3.1",
"@angular/router": "3.3.1",
"angular2-infinite-scroll": "0.2.7",
"angular2-moment": "1.0.0",
"angular2-notifications": "0.4.48",
"angularfire2": "2.0.0-beta.8",
"angularfire2-offline": "2.0.7",
"core-js": "2.4.1",
"firebase": "3.8.0",
"moment": "2.19.1",
"rxjs": "5.0.3",
"ts-helpers": "1.1.2",
"zone.js": "0.7.2"
},
"devDependencies": {
"@angular/cli": "1.0.0-beta.31",
"@angular/compiler-cli": "2.3.1",
"@types/chai": "3.4.34",
"@types/jasmine": "2.5.38",
"@types/localforage": "0.0.33",
"@types/lodash": "ts2.0",
"@types/node": "6.0.42",
"codelyzer": "~2.0.0-beta.1",
"gh-pages-deploy": "0.4.2",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "2.7.0",
"karma": "1.3.0",
"karma-chrome-launcher": "2.1.0",
"karma-cli": "1.0.1",
"karma-jasmine": "1.0.2",
"karma-coverage-istanbul-reporter": "^0.3.0",
"lcov-parse": "0.0.10",
"protractor": "5.1.0",
"sass-lint": "1.10.2",
"sw-precache": "4.2.3",
"ts-node": "1.7.2",
"tslint": "4.3.0",
"typedoc": "0.5.1",
"typedoc-plugin-external-module-name": "1.0.4",
"typescript": "2.0.10",
"webdriver-manager": "11.0.0"
}
}