-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
53 lines (53 loc) · 1.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
{
"name": "angular2-testing-ground",
"version": "1.0.0",
"description": "Angular 2 testing and development examples",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.config.js --colors --progress",
"start": "webpack-dev-server --inline --progress --display-error-details --port 3000 --content-base src",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/angular2-testing-ground.git"
},
"author": {
"name": "blacksonic",
"email": "[email protected]"
},
"license": "ISC",
"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",
"core-js": "2.4.1",
"rxjs": "5.0.0-beta.12",
"zone.js": "0.6.25"
},
"devDependencies": {
"@types/jasmine": "2.2.34",
"@types/core-js": "0.9.34",
"@types/node": "6.0.41",
"@types/webpack": "1.12.34",
"copy-webpack-plugin": "3.0.1",
"jasmine-core": "2.5.2",
"karma": "1.3.0",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "1.8.0",
"raw-loader": "0.5.1",
"ts-loader": "0.8.2",
"typescript": "2.0.3",
"webpack": "1.13.2",
"webpack-dev-server": "1.16.1"
}
}