-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.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
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
87
88
89
90
91
92
93
94
95
96
97
{
"name": "angular2-webpack",
"version": "1.0.0",
"description": "A webpack starter for Angular",
"scripts": {
"start": "webpack-dev-server --inline --progress --port 3000 --watch",
"test": "karma start",
"build": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail",
"build:node": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail"
},
"license": "MIT",
"dependencies": {
"@angular/common": "~2.3.0",
"@angular/compiler": "~2.3.0",
"@angular/core": "~2.3.0",
"@angular/forms": "~2.3.0",
"@angular/http": "~2.3.0",
"@angular/platform-browser": "~2.3.0",
"@angular/platform-browser-dynamic": "~2.3.0",
"@angular/router": "~3.3.0",
"babel-polyfill": "^6.20.0",
"babel-runtime": "^6.20.0",
"body-parser": "~1.15.2",
"cookie-parser": "~1.4.3",
"core-js": "^2.4.1",
"debug": "2.2.0",
"express": "^4.14.0",
"fs": "0.0.1-security",
"hbs": "~4.0.1",
"jquery": "^3.1.1",
"lodash": "^4.17.2",
"morgan": "~1.7.0",
"path": "^0.12.7",
"reflect-metadata": "^0.1.9",
"rxjs": "5.0.0-rc.4",
"serve-favicon": "^2.3.2",
"zone.js": "^0.7.2"
},
"devDependencies": {
"@types/jasmine": "^2.5.35",
"@types/jquery": "^2.0.34",
"@types/lodash": "^4.14.44",
"@types/node": "^6.0.53",
"angular2-router-loader": "^0.3.4",
"angular2-template-loader": "^0.4.0",
"awesome-typescript-loader": "^2.2.4",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.23.1",
"eslint": "^3.12.2",
"eslint-loader": "^1.6.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.15.0",
"istanbul-instrumenter-loader": "^1.2.0",
"jasmine-core": "^2.4.1",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-commonjs": "^1.0.0",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-requirejs": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-typescript-preprocessor": "^0.3.1",
"karma-webpack": "^1.8.0",
"modernizr-webpack-plugin": "^1.0.5",
"node-sass": "^4.0.0",
"phantomjs": "^2.1.7",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"requirejs": "^2.3.2",
"retyped-cookie-parser-tsd-ambient": "^1.3.4-0",
"rimraf": "^2.5.2",
"sass-loader": "^4.1.0",
"style-loader": "^0.13.1",
"tslint": "^4.2.0",
"tslint-loader": "^3.3.0",
"typescript": "~2.0.10",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0"
}
}