This repository was archived by the owner on Jan 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.16 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.16 KB
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
{
"name": "webpack-angular-foundation",
"version": "1.0.0",
"description": "A starter kit for creating a project using angular2 and foundation with webpack",
"main": "webpack.config.js",
"scripts": {
"start": "webpack-dev-server --inline --progress --port 8080",
"test": "karma start",
"build": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail",
"postinstall": "typings install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tony-Proum/webpack-angular-foundation.git"
},
"keywords": [
"Webpack",
"Angular2",
"Foundation6"
],
"author": "Tony Proum",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tony-Proum/webpack-angular-foundation/issues"
},
"homepage": "https://github.com/Tony-Proum/webpack-angular-foundation#readme",
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0",
"core-js": "^2.4.1",
"foundation-sites": "^6.2.3",
"jquery": "^2.2.4",
"node-sass": "^3.10.1",
"rxjs": "5.0.0-beta.12",
"sass-loader": "^4.0.2",
"zone.js": "^0.6.23"
},
"devDependencies": {
"angular2-template-loader": "^0.4.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.15.0",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"node-sass": "^3.10.1",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.7",
"purifycss-webpack-plugin": "^2.0.3",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"ts-loader": "^2.1.0",
"typescript": "^2.4.0",
"typings": "^1.3.2",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0"
}
}