-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.51 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
{
"name": "angular2-webpack",
"version": "1.0.0",
"description": "A webpack starter for Angular",
"scripts": {
"start": "webpack-dev-server --inline --port 1666",
"test": "karma start karma.config.js",
"build": "rimraf dist && webpack --config config/webpack.prod.js --progress --color --profile --bail",
"docs": "rimraf docs && webpack --config config/webpack.docs.js --progress --color"
},
"license": "MIT",
"dependencies": {
"@angular/common": "^4.4.5",
"@angular/compiler": "^4.4.5",
"@angular/core": "^4.4.5",
"@angular/forms": "^4.4.5",
"@angular/http": "^4.4.5",
"@angular/platform-browser": "^4.4.5",
"@angular/platform-browser-dynamic": "^4.4.5",
"@angular/router": "^4.4.5",
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"dragula": "^3.7.2",
"font-awesome": "^4.7.0",
"font-awesome-webpack": "0.0.4",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"ng2-dragula": "^1.2.2",
"rxjs": "^5.4.2",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@types/bootstrap": "^3.3.32",
"@types/jasmine": "^2.5.35",
"@types/jquery": "^2.0.34",
"@types/lodash": "^4.14.53",
"@types/node": "^6.0.45",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.2.3",
"chalk": "^1.1.3",
"codelyzer": "^3.2.1",
"css-loader": "^0.28.7",
"expose-loader": "^0.7.3",
"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.4.1",
"karma": "^1.2.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"node-sass": "^4.1.1",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.7",
"postcss": "^6.0.8",
"postcss-loader": "^2.0.8",
"progress-bar-webpack-plugin": "^1.10.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "^7.11.1",
"stylelint-config-standard": "^16.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"to-string-loader": "^1.1.5",
"tslint": "^5.7.0",
"tslint-loader": "^3.5.3",
"typedoc": "^0.5.7",
"typedoc-webpack-plugin": "^1.1.3",
"typescript": "^2.5.3",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.2",
"webpack-merge": "^4.1.0",
"webpack-notifier": "^1.5.0"
}
}