-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.65 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
{
"name": "angular2-example",
"version": "1.0.0",
"license": "Apache-2.0",
"author": {
"name": "Dylan McDonald",
"email": "[email protected]",
"url": "https://bootcamp-coders.cnm.edu/~dmcdonald21/angular2-example"
},
"scripts": {
"build": "rimraf public_html/dist && tsc && webpack --config webpack/webpack.live.js --progress --profile --bail"
},
"repository": {
"type": "git",
"url": "https://github.com/dylan-mcdonald/angular2-example.git"
},
"dependencies": {
"@angular/common": "~2.4.7",
"@angular/compiler": "~2.4.7",
"@angular/core": "~2.4.7",
"@angular/forms": "~2.4.7",
"@angular/http": "~2.4.7",
"@angular/platform-browser": "~2.4.7",
"@angular/platform-browser-dynamic": "~2.4.7",
"@angular/router": "~3.4.7",
"core-js": "^2.4.1",
"rxjs": "5.0.1",
"jquery": "^3.1.1",
"zone.js": "^0.7.7"
},
"devDependencies": {
"@types/node": "^6.0.45",
"awesome-typescript-loader": "^3.0.0-beta.18",
"bootstrap-loader": "^2.0.0-beta.21",
"bootstrap-sass": "^3.3.7",
"css-loader": "^0.26.1",
"eslint": "^3.15.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.10.0",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"file-loader": "^0.10.0",
"font-awesome": "^4.7.0",
"font-awesome-webpack2": "^0.0.6",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.28.0",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"node-sass": "^4.5.0",
"null-loader": "^0.1.1",
"raw-loader": "^0.5.1",
"resolve-url-loader": "^1.6.1",
"rimraf": "^2.5.4",
"sass-loader": "^6.0.0",
"style-loader": "^0.13.1",
"typescript": "^2.1.6",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-merge": "^2.6.1"
}
}