-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.94 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
{
"name": "angular-setup",
"version": "1.0.0",
"description": "This is implementation of tutorial: [https://semaphoreci.com/community/tutorials/setting-up-angular-2-with-webpack](https://semaphoreci.com/community/tutorials/setting-up-angular-2-with-webpack)",
"main": "index.js",
"scripts": {
"build": "webpack -p",
"start": "webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/karelhala/angular-setup.git"
},
"author": "Karel Hala",
"license": "MIT",
"bugs": {
"url": "https://github.com/karelhala/angular-setup/issues"
},
"homepage": "https://github.com/karelhala/angular-setup",
"dependencies": {
"@angular/common": "2.2.3",
"@angular/compiler": "2.2.3",
"@angular/core": "2.2.3",
"@angular/flex-layout": "^2.0.0-beta.4",
"@angular/forms": "2.2.3",
"@angular/http": "2.2.3",
"@angular/material": "2.0.0-beta.1",
"@angular/platform-browser": "2.2.3",
"@angular/platform-browser-dynamic": "2.2.3",
"@angular/router": "3.0.0",
"font-awesome": "^4.6.3",
"hammerjs": "^2.0.8",
"html-webpack-plugin": "^2.22.0",
"lodash": "^4.15.0",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.23"
},
"devDependencies": {
"@types/angular": "^1.6.3",
"@types/core-js": "^0.9.35",
"@types/es6-shim": "^0.31.32",
"@types/hammerjs": "^2.0.34",
"@types/lodash": "^4.14.52",
"@types/node": "^7.0.4",
"@types/requirejs": "^2.1.28",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"node-sass": "^3.10.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"ts-loader": "0.8.2",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "^2.1.5",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-dev-server": "1.14.1",
"webpack-node-externals": "^1.4.3"
}
}