-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
34 lines (34 loc) · 1.08 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
{
"name": "angular2-rxjs-observable-data-services",
"version": "1.0.0",
"description": "An example of how to build an Angular 2 application using RxJs Observable Data Services",
"scripts": {
"webpack-dev-server": "webpack-dev-server --colors --display-error-details --content-base src --port 8081",
"start": "cd src && node --harmony server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhades/angular2-rxjs-observable-data-services.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jhades/angular2-rxjs-observable-data-services/issues"
},
"homepage": "https://github.com/jhades/angular2-rxjs-observable-data-services#readme",
"devDependencies": {
"body-parser": "^1.14.2",
"express": "^4.13.4",
"http-proxy": "^1.13.1",
"immutable": "^3.7.6",
"lodash": "^4.3.0",
"ts-loader": "^0.7.2",
"typescript": "^1.7.5",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"angular2": "2.0.0-beta.6",
"rxjs": "5.0.0-beta.0"
}
}