-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.68 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "angular2-webpack-seed",
"version": "1.2.0",
"scripts": {
"start": "webpack-dev-server --inline --progress --port 3200",
"build": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail",
"test": "karma start",
"lint": "tslint 'src/**/*.ts' --type-check --project tsconfig.json -e src/main-aot.ts",
"aot": "rimraf aot && ngc -p tsconfig-aot.json",
"build:analyzer": "[ -d dist ] || mkdir dist && webpack --config config/webpack.prod.js --json > dist/stats.json",
"bundle-report": "webpack-bundle-analyzer dist/stats.json"
},
"keywords": [
"angular",
"typescript",
"bootstrap",
"karma",
"jasmine",
"webpack",
"aot"
],
"author": "Felix Gladisch <felix@felixgladisch.de>",
"homepage": "https://github.com/fgladisch/angular2-webpack-seed",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fgladisch/angular2-webpack-seed.git"
},
"bugs": {
"url": "https://github.com/fgladisch/angular2-webpack-seed/issues"
},
"dependencies": {
"@angular/common": "4.4.4",
"@angular/compiler": "4.4.4",
"@angular/core": "4.4.4",
"@angular/forms": "4.4.4",
"@angular/http": "4.4.4",
"@angular/platform-browser": "4.4.4",
"@angular/platform-browser-dynamic": "4.4.4",
"@angular/router": "4.4.4",
"@ng-bootstrap/ng-bootstrap": "1.0.0-beta.5",
"@ngx-translate/core": "8.0.0",
"@ngx-translate/http-loader": "2.0.0",
"bootstrap": "4.0.0-beta",
"core-js": "2.5.1",
"rxjs": "^5.5.0",
"zone.js": "0.8.18"
},
"devDependencies": {
"@angular/compiler-cli": "4.4.4",
"@ngtools/webpack": "1.7.2",
"@types/core-js": "0.9.43",
"@types/jasmine": "2.6.0",
"@types/node": "8.0.33",
"angular2-template-loader": "0.6.2",
"awesome-typescript-loader": "3.2.3",
"codelyzer": "3.2.1",
"compression-webpack-plugin": "1.0.1",
"copy-webpack-plugin": "4.1.1",
"css-loader": "0.28.7",
"extract-text-webpack-plugin": "3.0.1",
"file-loader": "1.1.5",
"html-loader": "0.5.1",
"html-webpack-plugin": "2.30.1",
"jasmine-core": "2.8.0",
"json-loader": "0.5.7",
"karma": "1.7.1",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "1.1.0",
"karma-mocha-reporter": "2.2.4",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.5",
"node-sass": "4.5.3",
"raw-loader": "0.5.1",
"rimraf": "2.6.2",
"sass-loader": "6.0.6",
"to-string-loader": "1.1.5",
"ts-helpers": "1.1.2",
"tslint": "5.7.0",
"typescript": "2.5.3",
"webpack": "3.6.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-dev-server": "2.9.1",
"webpack-merge": "4.1.0"
}
}