forked from emartech/angular2-phonecat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.36 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.36 KB
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
{
"name": "angular2-phonecat",
"version": "1.0.0",
"description": "Angular 2 port of the original Angular Phonecat application with Webpack",
"main": "src/app/main.js",
"scripts": {
"build": "webpack",
"deploy": "gh-pages -d dist",
"lint": "tslint \"src/**/*.ts\"",
"start": "webpack-dev-server",
"start-prod": "http-server ./dist -p 3000",
"test": "karma start",
"test-watch": "karma start"
},
"author": {
"name": "blacksonic",
"email": "soos.gabor86@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/emartech/angular2-phonecat.git"
},
"license": "MIT",
"keywords": [
"angular2",
"typescript",
"webpack"
],
"dependencies": {
"@angular/common": "2.0.1",
"@angular/compiler": "2.0.1",
"@angular/compiler-cli": "0.6.3",
"@angular/core": "2.0.1",
"@angular/forms": "2.0.1",
"@angular/http": "2.0.1",
"@angular/platform-browser": "2.0.1",
"@angular/platform-browser-dynamic": "2.0.1",
"@angular/platform-server": "2.0.1",
"@angular/router": "3.0.1",
"bootstrap": "3.3.7",
"core-js": "2.4.1",
"font-awesome": "4.6.3",
"rxjs": "5.0.0-beta.12",
"ts-helpers": "1.1.1",
"zone.js": "0.6.25"
},
"devDependencies": {
"angular2-config-generator": "github:blacksonic/angular2-config-generator",
"http-server": "0.9.0"
}
}