-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 3.57 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
{
"scripts": {
"start": "echo \"Use: npm run start:<module number>\"",
"start:001-1": "parcel src/001-Introduction/001-rxjs-reactive/index.html",
"start:001-2": "parcel src/001-Introduction/002-imperative-declarative-reactive/index.html",
"start:001-3": "parcel src/001-Introduction/003-reactive-imperative/index.html",
"start:001-4": "parcel src/001-Introduction/004-RxJS-example-why/index.html",
"start:002-1": "parcel src/002-Observable/001-sync-async/index.html",
"start:002-2": "parcel src/002-Observable/002-observer/index.html",
"start:002-3": "parcel src/002-Observable/003-subscription/index.html",
"start:002-4": "parcel src/002-Observable/004-creating-observable/index.html",
"start:002-5": "parcel src/002-Observable/005-custom-observable/index.html",
"start:002-6": "parcel src/002-Observable/006-promises-vs-observable/index.html",
"start:003-1": "parcel src/003-Hot-Cold/001-hot-cold-observable/index.html",
"start:003-2": "parcel src/003-Hot-Cold/002-cold-to-hot/index.html",
"start:003-3": "parcel src/003-Hot-Cold/003-share-replay/index.html",
"start:004.1-1": "parcel src/004.1-utility-operators/001-tap/index.html",
"start:004.1-2": "parcel src/004.1-utility-operators/002-delay/index.html",
"start:004.1-3": "parcel src/004.1-utility-operators/003-timeinterval-timestamp/index.html",
"start:004.1-4": "parcel src/004.1-utility-operators/004-toArray/index.html",
"start:004.1-5": "parcel src/004.1-utility-operators/005-repeat/index.html",
"start:004-1": "parcel src/004-operators/001-pipe/index.html",
"start:004-2": "parcel src/004-operators/002-why-not-works/index.html",
"start:005-1": "parcel src/005-transformation-operators/001-map/index.html",
"start:005-2": "parcel src/005-transformation-operators/002-map-to/index.html",
"start:005-3": "parcel src/005-transformation-operators/003-partition/index.html",
"start:005-4": "parcel src/005-transformation-operators/004-pluck/index.html",
"start:006-1": "parcel src/006-math-aggregate/001-reduce-scan/index.html",
"start:006-2": "parcel src/006-math-aggregate/002-count-max-min/index.html",
"start:007-1": "parcel src/007-filtering-operators/001-filter-find-firs-last/index.html",
"start:007-2": "parcel src/007-filtering-operators/002-distinct/index.html",
"start:007-3": "parcel src/007-filtering-operators/003-distinctUntilChanged/index.html",
"start:007-4": "parcel src/007-filtering-operators/004-take-takeLast-takeUntil-takeWhile/index.html",
"start:009-1": "parcel src/009-combine-operators/001-forkJoin/index.html",
"start:009-2": "parcel src/009-combine-operators/002-race/index.html",
"start:009-3": "parcel src/009-combine-operators/003-zip/index.html",
"start:014-1": "parcel src/014-higher-order-observable/001-the-problem/index.html",
"start:014-2": "parcel src/014-higher-order-observable/002-concat-concatAll-concatMap/index.html",
"start:014-3": "parcel src/014-higher-order-observable/003-merge-mergeAll-mergeMap/index.html",
"start:014-4": "parcel src/014-higher-order-observable/004-switchAll-switchMap/index.html",
"start:014-5": "parcel src/014-higher-order-observable/005-exhaustAll-exhaustMap/index.html",
"start:300": "parcel src/exercise/001-Observables-function/index.html",
"start:301": "parcel src/exercise/002-custom-Observable/index.html",
"start:303": "parcel src/exercise/003-operators-exercise/index.html"
},
"devDependencies": {
"typescript": "^3.6.3",
"parcel-bundler": "^1.12.4",
"prettier": "^1.18.2"
},
"dependencies": {
"rxjs": "^6.5.3"
}
}